3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { public function xx(int $a, float $b) { print_r(func_get_args()); } } class B extends A { public function xx(int $a, float $b) { throw new Error('Not allowed'); } } $a = new A(); $a->xx(1, 2); $b = new B(); $b->xx(1, 2);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 1 [1] => 2 ) Fatal error: Uncaught Error: Not allowed in /in/3m7eo:13 Stack trace: #0 /in/3m7eo(21): B->xx(1, 2.0) #1 {main} thrown in /in/3m7eo on line 13
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:
112.23 ms | 405 KiB | 5 Q