fork download
  1. <?php
  2.  
  3. $arr = array();
  4. $obj = new stdClass;
  5.  
  6. echo $undefined;
  7. echo $arr['undefined'];
  8. echo $obj->undefined;
Success #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined variable: undefined in /home/xj4rLM/prog.php on line 6
PHP Notice:  Undefined index: undefined in /home/xj4rLM/prog.php on line 7
PHP Notice:  Undefined property: stdClass::$undefined in /home/xj4rLM/prog.php on line 8