3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface Interfaze { public function hello($name); } class ParentClazz implements Interfaze { public function __construct() { $this->hello(); } public function hello($name) { echo "Hello, $name!"; } } class ChildClazz extends ParentClazz { public function __construct() { echo "Loaded from the child class."; parent::__construct(); } } $childclass = new ChildClazz("Matthew");
Output for git.master, git.master_jit, rfc.property-hooks
Loaded from the child class. Fatal error: Uncaught ArgumentCountError: Too few arguments to function ParentClazz::hello(), 0 passed in /in/hFKFj on line 11 and exactly 1 expected in /in/hFKFj:14 Stack trace: #0 /in/hFKFj(11): ParentClazz->hello() #1 /in/hFKFj(23): ParentClazz->__construct() #2 /in/hFKFj(27): ChildClazz->__construct('Matthew') #3 {main} thrown in /in/hFKFj on line 14
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:
42.68 ms | 401 KiB | 8 Q