fork download
  1. <?php
  2.  
  3. class Caller
  4. {
  5. private $x = array(1, 2, 3);
  6. function _call($m, $a)
  7. {
  8. print "Modelo $m chamado:\n";
  9. var_dump($a);
  10. return this->$x;
  11. }
  12. }
Runtime error #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ';' in /home/ZGODn0/prog.php on line 10