fork download
  1. <?php
  2. class A
  3. {
  4. public function ciao(){return true;};
  5. }
  6.  
  7. $a = new A();
  8. var_dump(!$a->ciao());
  9. var_dump($a->!ciao());
Runtime error #stdin #stdout #stderr 0.01s 20552KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected ';', expecting function (T_FUNCTION) in /home/gzBxAE/prog.php on line 4