fork download
  1. <?php
  2. function divide()
  3. {
  4. $result=6/0;
  5. echo "The result: ".$result;
  6. }
  7. divide();
  8. ?>
Success #stdin #stdout #stderr 0.03s 26392KB
stdin
Standard input is empty
stdout
The result: INF
stderr
PHP Warning:  Division by zero in /home/bSJkKH/prog.php on line 4