3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler(function ($err_severity, $err_msg, $err_file, $err_line, array $err_context) { throw new Exception(); } $grade = 10; try { $grade = $grade / 0; } catch (Exception $e) { $grade = 0; } var_dump($grade);
Output for 7.0.0
Parse error: syntax error, unexpected '$grade' (T_VARIABLE), expecting ',' or ')' in /in/t6HtV on line 7
Process exited with code 255.
Output for 5.5.24 - 5.5.30, 5.6.8 - 5.6.16
Parse error: syntax error, unexpected '$grade' (T_VARIABLE) in /in/t6HtV on line 7
Process exited with code 255.

preferences:
167.64 ms | 1395 KiB | 24 Q