3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface Objects {} class One implements Objects {} class Two implements Objects {} function check(Objects ...$objects): void { var_dump($objects); } check(new One, new Two); check(new Two);
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> object(One)#1 (0) { } [1]=> object(Two)#2 (0) { } } array(1) { [0]=> object(Two)#2 (0) { } }

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:
41.71 ms | 405 KiB | 5 Q