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; $childclass;
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/Q9ar6 on line 11 and exactly 1 expected in /in/Q9ar6:14 Stack trace: #0 /in/Q9ar6(11): ParentClazz->hello() #1 /in/Q9ar6(23): ParentClazz->__construct() #2 /in/Q9ar6(27): ChildClazz->__construct() #3 {main} thrown in /in/Q9ar6 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:
48.96 ms | 401 KiB | 8 Q