3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function my_array_walk(array $array, callable $cb ) { foreach ($array as $element) { $cb($element); } } my_array_walk(array('12'), function (int $element) {});
Output for 8.4.1 - 8.4.12
Fatal error: Uncaught TypeError: {closure:/in/0Nc7d:11}(): Argument #1 ($element) must be of type int, string given, called in /in/0Nc7d on line 7 and defined in /in/0Nc7d:11 Stack trace: #0 /in/0Nc7d(7): {closure:/in/0Nc7d:11}('12') #1 /in/0Nc7d(11): my_array_walk(Array, Object(Closure)) #2 {main} thrown in /in/0Nc7d on line 11
Process exited with code 255.
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25
Fatal error: Uncaught TypeError: {closure}(): Argument #1 ($element) must be of type int, string given, called in /in/0Nc7d on line 7 and defined in /in/0Nc7d:11 Stack trace: #0 /in/0Nc7d(7): {closure}('12') #1 /in/0Nc7d(11): my_array_walk(Array, Object(Closure)) #2 {main} thrown in /in/0Nc7d on line 11
Process exited with code 255.
Output for 7.3.16 - 7.3.33, 7.4.0 - 7.4.33
Fatal error: Uncaught TypeError: Argument 1 passed to {closure}() must be of the type int, string given, called in /in/0Nc7d on line 7 and defined in /in/0Nc7d:11 Stack trace: #0 /in/0Nc7d(7): {closure}('12') #1 /in/0Nc7d(11): my_array_walk(Array, Object(Closure)) #2 {main} thrown in /in/0Nc7d on line 11
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33
Fatal error: Uncaught TypeError: Argument 1 passed to {closure}() must be of the type integer, string given, called in /in/0Nc7d on line 7 and defined in /in/0Nc7d:11 Stack trace: #0 /in/0Nc7d(7): {closure}('12') #1 /in/0Nc7d(11): my_array_walk(Array, Object(Closure)) #2 {main} thrown in /in/0Nc7d on line 11
Process exited with code 255.
Output for 5.5.0 - 5.5.37, 5.6.0 - 5.6.28
Warning: Unsupported declare 'strict_types' in /in/0Nc7d on line 3 Catchable fatal error: Argument 1 passed to {closure}() must be an instance of int, string given, called in /in/0Nc7d on line 7 and defined in /in/0Nc7d on line 11
Process exited with code 255.

preferences:
172.43 ms | 412 KiB | 5 Q