3v4l.org

run code in 500+ PHP versions simultaneously
<?php $statusCode = 10; $message = match ($statusCode) { 200, 300 => null, 400 => 'not found', 500 => 'server error', }; echo $message;
Output for 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Fatal error: Uncaught UnhandledMatchError: Unhandled match case 10 in /in/52bgD:5 Stack trace: #0 {main} thrown in /in/52bgD on line 5
Process exited with code 255.
Output for 8.0.1 - 8.0.30
Fatal error: Uncaught UnhandledMatchError: Unhandled match value of type int in /in/52bgD:5 Stack trace: #0 {main} thrown in /in/52bgD on line 5
Process exited with code 255.

preferences:
79.09 ms | 1121 KiB | 4 Q