3v4l.org

run code in 300+ PHP versions simultaneously
<?php class otherClass { public static function f1 () { echo "\n"; echo "\n".__CLASS__; echo "\n".__FUNCTION__; childClass::f2(); childClass::f3(); } } class parentClass { public $val = "pC"; public static function f2 () { echo "\n"; echo "\n".__CLASS__; echo "\n".__FUNCTION__; return self::f4(); } public static function f3 () { echo "\n"; echo "\n".__CLASS__; echo "\n".__FUNCTION__; return static::f4(); } public static function f4 () { echo "\n"; echo "\n".__CLASS__; echo "\n".__FUNCTION__; echo "\n val-self: ".self::$val; echo "\n val-static: ".static::$val; } } class childClass extends parentClass { public $val = "cC"; public static function f4 () { echo "\n"; echo "\n".__CLASS__; echo "\n".__FUNCTION__; echo "\n val-self: ".self::$val; echo "\n val-static: ".static::$val; } } otherClass::f1();
Output for git.master, git.master_jit, rfc.property-hooks
otherClass f1 parentClass f2 parentClass f4 Fatal error: Uncaught Error: Access to undeclared static property parentClass::$val in /in/17vI2:39 Stack trace: #0 /in/17vI2(24): parentClass::f4() #1 /in/17vI2(9): parentClass::f2() #2 /in/17vI2(59): otherClass::f1() #3 {main} thrown in /in/17vI2 on line 39
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
45.13 ms | 401 KiB | 8 Q