fork(1) download
  1. <?php
  2.  
  3. class Bird {
  4. public $wings;
  5. public $beaks;
  6. }
  7.  
  8. $pituh = new Bird();
  9. $pituh->teeth;
Success #stdin #stdout #stderr 0.02s 24532KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined property: Bird::$teeth in /home/mCjxE0/prog.php on line 9