3v4l.org

run code in 500+ PHP versions simultaneously
<?php spl_autoload_register(function($class) { var_dump('Autoload: '.$class); return false;}); var_dump(is_a(1, 'Foo')); var_dump(is_a(2, 'Foo', false)); var_dump(is_a(3, 'Foo', true)); var_dump(is_a('a', 'Foo')); var_dump(is_a('b', 'Foo', false)); var_dump(is_a('c', 'Foo', true));
Output for 5.3.9 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 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, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.31, 8.3.0 - 8.3.31, 8.4.1 - 8.4.22, 8.5.0 - 8.5.7
bool(false) bool(false) bool(false) bool(false) bool(false) string(11) "Autoload: c" bool(false)
Output for 5.3.7 - 5.3.8
bool(false) Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 6 NULL Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 7 NULL string(11) "Autoload: a" bool(false) Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 10 NULL Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 11 NULL
Output for 5.3.0 - 5.3.6
bool(false) Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 6 NULL Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 7 NULL bool(false) Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 10 NULL Warning: is_a() expects exactly 2 parameters, 3 given in /in/hvEVt on line 11 NULL
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /in/hvEVt on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_FUNCTION, expecting ')' in /in/hvEVt on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `')'' in /in/hvEVt on line 3
Process exited with code 255.

preferences:
105.38 ms | 2192 KiB | 4 Q