3v4l.org

run code in 300+ PHP versions simultaneously
<?php class foo { public function bar($a) { echo "$a $b"; } } class baz extends foo { public function bar($a, $b) { echo "$b $a"; } } $bar = new baz; $bar->bar();
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
Fatal error: Declaration of baz::bar($a, $b) must be compatible with foo::bar($a) in /in/QQ3AU on line 10
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Warning: Declaration of baz::bar($a, $b) should be compatible with foo::bar($a) in /in/QQ3AU on line 10 Fatal error: Uncaught ArgumentCountError: Too few arguments to function baz::bar(), 0 passed in /in/QQ3AU on line 16 and exactly 2 expected in /in/QQ3AU:10 Stack trace: #0 /in/QQ3AU(16): baz->bar() #1 {main} thrown in /in/QQ3AU on line 10
Process exited with code 255.
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
Warning: Declaration of baz::bar($a, $b) should be compatible with foo::bar($a) in /in/QQ3AU on line 13 Fatal error: Uncaught ArgumentCountError: Too few arguments to function baz::bar(), 0 passed in /in/QQ3AU on line 16 and exactly 2 expected in /in/QQ3AU:10 Stack trace: #0 /in/QQ3AU(16): baz->bar() #1 {main} thrown in /in/QQ3AU on line 10
Process exited with code 255.
Output for 7.0.0 - 7.0.33
Warning: Declaration of baz::bar($a, $b) should be compatible with foo::bar($a) in /in/QQ3AU on line 13 Warning: Missing argument 1 for baz::bar(), called in /in/QQ3AU on line 16 and defined in /in/QQ3AU on line 10 Warning: Missing argument 2 for baz::bar(), called in /in/QQ3AU on line 16 and defined in /in/QQ3AU on line 10 Notice: Undefined variable: b in /in/QQ3AU on line 11 Notice: Undefined variable: a in /in/QQ3AU on line 11
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Strict Standards: Declaration of baz::bar() should be compatible with foo::bar($a) in /in/QQ3AU on line 13 Warning: Missing argument 1 for baz::bar(), called in /in/QQ3AU on line 16 and defined in /in/QQ3AU on line 10 Warning: Missing argument 2 for baz::bar(), called in /in/QQ3AU on line 16 and defined in /in/QQ3AU on line 10 Notice: Undefined variable: b in /in/QQ3AU on line 11 Notice: Undefined variable: a in /in/QQ3AU on line 11

preferences:
257.59 ms | 403 KiB | 377 Q