3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('FOO', 1); class bar { static $v = [ FOO => 1, FOOX => 1, ]; static $w; } // If following line is commentted out, undefined constant error disappears. var_dump(bar::$w);
Output for 8.3.0 - 8.3.4
Fatal error: Uncaught Error: Undefined constant "FOOX" in /in/ULp0K:7 Stack trace: #0 /in/ULp0K(14): [constant expression]() #1 {main} thrown in /in/ULp0K on line 7
Process exited with code 255.
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17
Fatal error: Uncaught Error: Undefined constant "FOOX" in /in/ULp0K:14 Stack trace: #0 {main} thrown in /in/ULp0K on line 14
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant FOOX - assumed 'FOOX' (this will throw an Error in a future version of PHP) in /in/ULp0K on line 14 NULL
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Notice: Use of undefined constant FOOX - assumed 'FOOX' in /in/ULp0K on line 14 NULL

preferences:
218.99 ms | 402 KiB | 283 Q