3v4l.org

run code in 300+ PHP versions simultaneously
<?php class a { public static function test() { static::foo(); static::bar(); } public static function foo() { echo __METHOD__ . " called\n"; } private static function bar() { echo __METHOD__ . " called\n"; } } class b extends a { } class c extends a { public static function foo() { echo __METHOD__ . " 123called\n"; } private static function bar() { echo __METHOD__ . " called\n"; } } a::test(); b::test(); c::test();
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
a::foo called a::bar called a::foo called a::bar called c::foo 123called Fatal error: Uncaught Error: Call to private method c::bar() from scope a in /in/cVeYF:6 Stack trace: #0 /in/cVeYF(35): a::test() #1 {main} thrown in /in/cVeYF on line 6
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
a::foo called a::bar called a::foo called a::bar called c::foo 123called Fatal error: Uncaught Error: Call to private method c::bar() from context 'a' in /in/cVeYF:6 Stack trace: #0 /in/cVeYF(35): a::test() #1 {main} thrown in /in/cVeYF on line 6
Process exited with code 255.
Output for 5.4.7 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
a::foo called a::bar called a::foo called a::bar called c::foo 123called Fatal error: Call to private method c::bar() from context 'a' in /in/cVeYF on line 6
Process exited with code 255.

preferences:
245.09 ms | 402 KiB | 236 Q