fork download
  1. <?php
  2.  
  3. function divide($x, $y) {
  4. $div = 'foo';
  5. }
  6.  
  7. divide(1, 2);
  8. var_dump($div);
Success #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
NULL
stderr
PHP Notice:  Undefined variable: div in /home/7PlKaq/prog.php on line 8