3v4l.org

run code in 300+ PHP versions simultaneously
<?php file_put_contents('/tmp/A.php', <<<EOF <?php class a { const a = b::c; const b = b::d; } EOF); file_put_contents('/tmp/B.php', <<<EOF <?php class b { const c = a::b; const d = 1; } EOF); spl_autoload_register(function($class) { require('/tmp/'. $class .'.php'); }); var_dump(A::a, A::b, B::c, B::d);
Output for 8.3.0 - 8.3.6
Warning: require(/tmp/b.php): Failed to open stream: No such file or directory in /tmp/A.php on line 4 Fatal error: Uncaught Error: Failed opening required '/tmp/b.php' (include_path='.:') in /tmp/A.php:4 Stack trace: #0 /in/d1ORL(21): [constant expression]() #1 /in/d1ORL(24): {closure}('b') #2 {main} thrown in /tmp/A.php on line 4
Process exited with code 255.
Output for 8.2.0 - 8.2.18
Warning: require(/tmp/b.php): Failed to open stream: No such file or directory in /tmp/A.php on line 4 Fatal error: Uncaught Error: Failed opening required '/tmp/b.php' (include_path='.:') in /tmp/A.php:4 Stack trace: #0 /in/d1ORL(24): {closure}('b') #1 {main} thrown in /tmp/A.php on line 4
Process exited with code 255.
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
Warning: require(/tmp/b.php): Failed to open stream: No such file or directory in /in/d1ORL on line 21 Fatal error: Uncaught Error: Failed opening required '/tmp/b.php' (include_path='.:') in /in/d1ORL:21 Stack trace: #0 /in/d1ORL(24): {closure}('b') #1 {main} thrown in /in/d1ORL on line 21
Process exited with code 255.
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: require(/tmp/b.php): failed to open stream: No such file or directory in /in/d1ORL on line 21 Fatal error: require(): Failed opening required '/tmp/b.php' (include_path='.:') in /in/d1ORL on line 21
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34
Parse error: syntax error, unexpected end of file in /in/d1ORL on line 24
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Parse error: syntax error, unexpected $end in /in/d1ORL on line 24
Process exited with code 255.

preferences:
313.02 ms | 401 KiB | 415 Q