why i get this error? how fix it? when run on server get Fatal error: Method name must be a string line 8
class Model extends Core_Model_Config_Data
{
protected function Load()
{
$a = file_properties();
$x0 = $this->$a["x0"](); line 8 error
$x0 = $this->$a["x1"]($x0);
$this->$a["x2"]($x0);
}
}
please help me.
$x0 = $this->$a["x0"]();
is supposed to be? – Hanky 웃 Panky Oct 27 '13 at 14:15var_dump($this->$a["x0"])
?? – zzlalani Oct 27 '13 at 14:16