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.1.0 - 8.1.7
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:
187.55 ms | 1395 KiB | 64 Q