i'm kind of new to php, what does the operator -> mean, for example:
function Session(){
$this->time = time();
$this->startSession() ;
}
Thanks for the help.
function Session(){
$this->time = time();
$this->startSession() ;
}
Thanks for the help.
Comment