fork(1) download
  1. <?php
  2.  
  3. class Mmm
  4. {
  5.  
  6. public $a = 5;
  7.  
  8. }
  9.  
  10. $x = new Mmm();
  11. echo $x->this->a;
Success #stdin #stdout #stderr 0.02s 52480KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined property: Mmm::$this in /home/67m95e/prog.php on line 11
PHP Notice:  Trying to get property of non-object in /home/67m95e/prog.php on line 11