3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler(function ($errno) { if (!(error_reporting() & $errno)) { return false; } return false; }); $a = @(1/0); var_dump(error_get_last());
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.24, 8.3.0 - 8.3.13
Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/cp5l0:13 Stack trace: #0 {main} thrown in /in/cp5l0 on line 13
Process exited with code 255.
Output for 5.6.0 - 5.6.30, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
array(4) { ["type"]=> int(2) ["message"]=> string(16) "Division by zero" ["file"]=> string(9) "/in/cp5l0" ["line"]=> int(13) }

preferences:
78.06 ms | 408 KiB | 5 Q