3v4l.org

run code in 300+ PHP versions simultaneously
<?php function get_value($i) { switch ($i) { case 1; return 1; default; return 2; break; } } var_dump(get_value(1)); var_dump(get_value(2));
Output for 8.5.0 - 8.5.3
Deprecated: Case statements followed by a semicolon (;) are deprecated, use a colon (:) instead in /in/o7nD8 on line 5 Deprecated: Case statements followed by a semicolon (;) are deprecated, use a colon (:) instead in /in/o7nD8 on line 7 int(1) int(2)
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18
int(1) int(2)

preferences:
107.51 ms | 1482 KiB | 4 Q