3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Test; class Element { } class Super { public function test() { $this->getOptions(); } protected function getOptions(Element $element) : array { return ["element", "Eelement"]; } } class Child extends Super { protected function getOptions(Element $element) : array { return ["ok", "Test"]; } } $super = new Super(); $super->test(); $child = new Child(); $child->test();
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Fatal error: Uncaught ArgumentCountError: Too few arguments to function Test\Super::getOptions(), 0 passed in /in/cSbjA on line 11 and exactly 1 expected in /in/cSbjA:14 Stack trace: #0 /in/cSbjA(11): Test\Super->getOptions() #1 /in/cSbjA(28): Test\Super->test() #2 {main} thrown in /in/cSbjA on line 14
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Uncaught ArgumentCountError: Too few arguments to function Test\Super::getOptions(), 0 passed in /in/cSbjA on line 11 and exactly 1 expected in /in/cSbjA:14 Stack trace: #0 /in/cSbjA(11): Test\Super->getOptions() #1 /in/cSbjA(28): Test\Super->test() #2 {main} thrown in /in/cSbjA on line 14
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Fatal error: Uncaught TypeError: Argument 1 passed to Test\Super::getOptions() must be an instance of Test\Element, none given, called in /in/cSbjA on line 11 and defined in /in/cSbjA:14 Stack trace: #0 /in/cSbjA(11): Test\Super->getOptions() #1 /in/cSbjA(28): Test\Super->test() #2 {main} thrown in /in/cSbjA on line 14
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Parse error: syntax error, unexpected ':', expecting ';' or '{' in /in/cSbjA on line 14
Process exited with code 255.

preferences:
208.32 ms | 401 KiB | 226 Q