fork download
  1. <?php
  2.  
  3. //$implicit_null = 1234;
  4. $explicit_null = NULL;
  5.  
  6. var_dump(is_null($implicit_null)); // TRUE, also throws undefined index error
  7. array_key_exists('implicit_null',get_defined_vars()) &&
  8. is_null($implicit_null)
  9. )); // FALSE
Success #stdin #stdout #stderr 0.01s 20520KB
stdin
Standard input is empty
stdout
bool(true)
bool(false)
stderr
PHP Notice:  Undefined variable: implicit_null in /home/BxEZCH/prog.php on line 6