3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function a(int $test){ echo "JA"; } a(1); a(2); a(2.0); a(null);
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
JAJA Fatal error: Uncaught TypeError: a(): Argument #1 ($test) must be of type int, float given, called in /in/t911X on line 10 and defined in /in/t911X:4 Stack trace: #0 /in/t911X(10): a(2.0) #1 {main} thrown in /in/t911X on line 4
Process exited with code 255.
Output for 8.0.0 - 8.0.30
JAJA Fatal error: Uncaught TypeError: a(): Argument #1 ($test) must be of type int, float given, called in /in/t911X on line 10 and defined in /in/t911X:4 Stack trace: #0 /in/t911X(10): a(2) #1 {main} thrown in /in/t911X on line 4
Process exited with code 255.
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
JAJA Fatal error: Uncaught TypeError: Argument 1 passed to a() must be of the type int, float given, called in /in/t911X on line 10 and defined in /in/t911X:4 Stack trace: #0 /in/t911X(10): a(2) #1 {main} thrown in /in/t911X on line 4
Process exited with code 255.
Output for 7.0.0 - 7.0.31, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33
JAJA Fatal error: Uncaught TypeError: Argument 1 passed to a() must be of the type integer, float given, called in /in/t911X on line 10 and defined in /in/t911X:4 Stack trace: #0 /in/t911X(10): a(2) #1 {main} thrown in /in/t911X on line 4
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.38
Warning: Unsupported declare 'strict_types' in /in/t911X on line 2 Catchable fatal error: Argument 1 passed to a() must be an instance of int, integer given, called in /in/t911X on line 8 and defined in /in/t911X on line 4
Process exited with code 255.

preferences:
225.7 ms | 402 KiB | 317 Q