3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (!function_exists('cd')) { function cd($var) { var_dump($var); } } function corban_error_handler($errno , $errstr, $errfile, $errline) { echo '<pre>'; print_r(debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)); echo '</pre>'; cd($errno); cd($errstr); cd($errfile); cd($errline); if ( version_compare(PHP_VERSION, '5.0.0', '>=') ) { $file = new SplFileObject($errfile); $file->seek($errline-1); $c = substr(trim($file->current()), 0, 3); if ($c=='cd(' || $c=='cd ') { cd($c); } } return false; } set_error_handler ('corban_error_handler', E_NOTICE); var_dump($a); $b = null; cd($a); cd($b);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined variable $a in /in/OXZE0 on line 36 NULL Warning: Undefined variable $a in /in/OXZE0 on line 38 NULL NULL
Output for 5.3.6 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.31, 7.1.0 - 7.1.23, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.33
<pre>Array ( [0] => Array ( [file] => /in/OXZE0 [line] => 36 [function] => corban_error_handler ) ) </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(36) Notice: Undefined variable: a in /in/OXZE0 on line 36 NULL <pre>Array ( [0] => Array ( [file] => /in/OXZE0 [line] => 38 [function] => corban_error_handler ) ) </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(38) string(3) "cd(" Notice: Undefined variable: a in /in/OXZE0 on line 38 NULL NULL
Output for 7.3.32 - 7.3.33
<pre>Array ( [0] => Array ( [file] => /in/OXZE0 [line] => 36 [function] => corban_error_handler ) ) </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(36) NULL <pre>Array ( [0] => Array ( [file] => /in/OXZE0 [line] => 38 [function] => corban_error_handler ) ) </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(38) string(3) "cd(" NULL NULL
Output for 5.2.5 - 5.2.17, 5.3.0 - 5.3.5
<pre> Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /in/OXZE0 on line 14 Array ( [0] => Array ( [file] => /in/OXZE0 [line] => 36 [function] => corban_error_handler [args] => Array ( [0] => 8 [1] => Undefined variable: a [2] => /in/OXZE0 [3] => 36 [4] => Array ( [GLOBALS] => Array *RECURSION* [_ENV] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp ) [HTTP_ENV_VARS] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp ) [argv] => Array ( [0] => /in/OXZE0 ) [argc] => 1 [_POST] => Array ( ) [HTTP_POST_VARS] => Array ( ) [_GET] => Array ( ) [HTTP_GET_VARS] => Array ( ) [_COOKIE] => Array ( ) [HTTP_COOKIE_VARS] => Array ( ) [_SERVER] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp [PHP_SELF] => /in/OXZE0 [SCRIPT_NAME] => /in/OXZE0 [SCRIPT_FILENAME] => /in/OXZE0 [PATH_TRANSLATED] => /in/OXZE0 [DOCUMENT_ROOT] => [REQUEST_TIME] => 1407010372 [argv] => Array ( [0] => /in/OXZE0 ) [argc] => 1 ) [HTTP_SERVER_VARS] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp [PHP_SELF] => /in/OXZE0 [SCRIPT_NAME] => /in/OXZE0 [SCRIPT_FILENAME] => /in/OXZE0 [PATH_TRANSLATED] => /in/OXZE0 [DOCUMENT_ROOT] => [REQUEST_TIME] => 1407010372 [argv] => Array ( [0] => /in/OXZE0 ) [argc] => 1 ) [_FILES] => Array ( ) [HTTP_POST_FILES] => Array ( ) [_REQUEST] => Array ( ) ) ) ) ) </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(36) Notice: Undefined variable: a in /in/OXZE0 on line 36 NULL <pre> Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /in/OXZE0 on line 14 Array ( [0] => Array ( [file] => /in/OXZE0 [line] => 38 [function] => corban_error_handler [args] => Array ( [0] => 8 [1] => Undefined variable: a [2] => /in/OXZE0 [3] => 38 [4] => Array ( [GLOBALS] => Array *RECURSION* [_ENV] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp ) [HTTP_ENV_VARS] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp ) [argv] => Array ( [0] => /in/OXZE0 ) [argc] => 1 [_POST] => Array ( ) [HTTP_POST_VARS] => Array ( ) [_GET] => Array ( ) [HTTP_GET_VARS] => Array ( ) [_COOKIE] => Array ( ) [HTTP_COOKIE_VARS] => Array ( ) [_SERVER] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp [PHP_SELF] => /in/OXZE0 [SCRIPT_NAME] => /in/OXZE0 [SCRIPT_FILENAME] => /in/OXZE0 [PATH_TRANSLATED] => /in/OXZE0 [DOCUMENT_ROOT] => [REQUEST_TIME] => 1407010372 [argv] => Array ( [0] => /in/OXZE0 ) [argc] => 1 ) [HTTP_SERVER_VARS] => Array ( [TERM] => xterm [PATH] => /usr/bin:/bin [LANG] => C [SHELL] => /bin/sh [MAIL] => /var/mail/nobody [LOGNAME] => nobody [USER] => nobody [HOME] => /tmp [PHP_SELF] => /in/OXZE0 [SCRIPT_NAME] => /in/OXZE0 [SCRIPT_FILENAME] => /in/OXZE0 [PATH_TRANSLATED] => /in/OXZE0 [DOCUMENT_ROOT] => [REQUEST_TIME] => 1407010372 [argv] => Array ( [0] => /in/OXZE0 ) [argc] => 1 ) [_FILES] => Array ( ) [HTTP_POST_FILES] => Array ( ) [_REQUEST] => Array ( ) [b] => ) ) ) ) </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(38) string(3) "cd(" Notice: Undefined variable: a in /in/OXZE0 on line 38 NULL NULL
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.4
<pre> Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /in/OXZE0 on line 14 Warning: Wrong parameter count for debug_backtrace() in /in/OXZE0 on line 14 </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(36) Notice: Undefined variable: a in /in/OXZE0 on line 36 NULL <pre> Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /in/OXZE0 on line 14 Warning: Wrong parameter count for debug_backtrace() in /in/OXZE0 on line 14 </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(38) string(3) "cd(" Notice: Undefined variable: a in /in/OXZE0 on line 38 NULL NULL
Output for 5.0.4 - 5.0.5
<pre> Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /in/OXZE0 on line 14 Warning: Wrong parameter count for debug_backtrace() in /in/OXZE0 on line 14 </pre>int(8) string(21) "Undefined variable: a" string(9) "/in/OXZE0" int(36) Fatal error: Class 'SplFileObject' not found in /in/OXZE0 on line 23
Process exited with code 255.
Output for 5.0.0 - 5.0.3
<pre> Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /in/OXZE0 on line 14 Warning: Wrong parameter count for debug_backtrace() in /in/OXZE0 on line 14 </pre>int(8) string(22) "Undefined variable: a" string(9) "/in/OXZE0" int(36) Fatal error: Class 'SplFileObject' not found in /in/OXZE0 on line 23
Process exited with code 255.
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9
Warning: Wrong parameter count for set_error_handler() in /in/OXZE0 on line 35 Notice: Undefined variable: a in /in/OXZE0 on line 36 NULL Notice: Undefined variable: a in /in/OXZE0 on line 38 NULL NULL

preferences:
312.65 ms | 402 KiB | 416 Q