3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { public static function autoload($class){} } class B { public static function autoload($class){} } class C { public static function autoload($class){} } spl_autoload_register(array('A', 'autoload'), true); spl_autoload_register(array('B', 'autoload'), true); var_dump(spl_autoload_functions()); spl_autoload_register(array('C', 'autoload'), true, true); var_dump(spl_autoload_functions());
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> array(2) { [0]=> string(1) "A" [1]=> string(8) "autoload" } [1]=> array(2) { [0]=> string(1) "B" [1]=> string(8) "autoload" } } array(3) { [0]=> array(2) { [0]=> string(1) "C" [1]=> string(8) "autoload" } [1]=> array(2) { [0]=> string(1) "A" [1]=> string(8) "autoload" } [2]=> array(2) { [0]=> string(1) "B" [1]=> string(8) "autoload" } }

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:
49.43 ms | 402 KiB | 8 Q