3v4l.org

run code in 500+ PHP versions simultaneously
<?php function somefunc(&$a, &$b, &$c, &$d, &$e, &$f, &$g) { foreach (get_defined_vars() as &$v) { $v = mb_strtolower($v); } } $a = 'HÈllo1'; $b = 'HÈllo2'; $c = 'HÈllo3'; $d = 'HÈllo4'; $e = 'HÈllo5'; $f = 'HÈllo6'; $g = 'HÈllo6'; somefunc($a, $b, $c, $d, $e, $f, $g); var_export([$a, $b, $c, $d, $e, $f, $g]);
Output for git.master, git.master_jit, rfc.property-hooks
array ( 0 => 'hèllo1', 1 => 'hèllo2', 2 => 'hèllo3', 3 => 'hèllo4', 4 => 'hèllo5', 5 => 'hèllo6', 6 => 'hèllo6', )

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:
47.02 ms | 1550 KiB | 4 Q