3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arX = Array('AAA' => 173.696, 'BBB' => 72.436, 'CCC' => 142.692); $arY = Array('AAA' => 127, 'DDD' => 72.333); $newArray = []; $callback = function($value, $key , $prefix) use (&$newArray) { if (!array_key_exists ($key , $newArray)) { $newArray[$key] = []; } $newArray[$key] += [$prefix => $value]; }; array_walk($arX , $callback , "X"); array_walk($arY , $callback , "Y"); var_dump($newArray);
Output for git.master_jit, git.master, rfc.property-hooks
array(4) { ["AAA"]=> array(2) { ["X"]=> float(173.696) ["Y"]=> int(127) } ["BBB"]=> array(1) { ["X"]=> float(72.436) } ["CCC"]=> array(1) { ["X"]=> float(142.692) } ["DDD"]=> array(1) { ["Y"]=> float(72.333) } }

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