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__ . " called\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.7
a::foo called a::bar called a::foo called a::bar called c::foo called Fatal error: Uncaught Error: Call to private method c::bar() from scope a in /in/FvIKO:6 Stack trace: #0 /in/FvIKO(35): a::test() #1 {main} thrown in /in/FvIKO on line 6
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 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 called Fatal error: Uncaught Error: Call to private method c::bar() from context 'a' in /in/FvIKO:6 Stack trace: #0 /in/FvIKO(35): a::test() #1 {main} thrown in /in/FvIKO on line 6
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
a::foo called a::bar called a::foo called a::bar called c::foo called Fatal error: Call to private method c::bar() from context 'a' in /in/FvIKO on line 6
Process exited with code 255.

preferences:
280.11 ms | 402 KiB | 377 Q