fork download
  1. <?php
  2.  
  3. function myErrorHandler($errno, $errstr, $errfile, $errline)
  4. {
  5. trigger_error("ОШИБКА!!!! $errno, $errstr, $errfile, $errline\n",E_USER_ERROR);
  6. }
  7. set_error_handler("myErrorHandler");
  8.  
  9. echo $undeclaredone;
  10. // your code goes here
Runtime error #stdin #stdout #stderr 0.01s 20520KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  ОШИБКА!!!! 8, Undefined variable: undeclaredone, /home/YBszJB/prog.php, 9
 in /home/YBszJB/prog.php on line 5