Ciao a tutti,
ho trovato in rete questo esempio:
function error($msgbox) {
if (is_object($this->errorHandlerObj) && method_exists($this->errorHandlerObj, 'error')) {
$this->errorHandlerObj->error($msgbox);
} else echo $msgbox;
if ($this->exitOnError) exit;
}
Potreste per cortesia spiegarmi la sintassi? In particolare non mi è chiaro l'uso di -> e di => che ho trovato in un altro esempio.
Grazie!