3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A {public int $i = 42;} const BARE_CONSTANT = new A; class B { const ClassConstant = BARE_CONSTANT; } class C { const ClassConstantViaPropertyFetching1 = BARE_CONSTANT->i; const ClassConstantViaPropertyFetching2 = B::ClassConstant->i; }
Output for 8.2.22 - 8.2.29, 8.3.5 - 8.3.25, 8.4.1 - 8.4.12
Output for 8.1.0 - 8.1.33
Fatal error: Constant expression contains invalid operations in /in/RGdIA on line 9
Process exited with code 255.
Output for 8.0.1 - 8.0.20
Fatal error: Constant expression contains invalid operations in /in/RGdIA on line 4
Process exited with code 255.
Output for 7.4.0 - 7.4.30
Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ';' or ',' in /in/RGdIA on line 9
Process exited with code 255.

preferences:
62.48 ms | 409 KiB | 5 Q