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 (!isset($newArray[$key])) { $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
Fatal error: Uncaught TypeError: array_walk(): Argument #1 ($array) must be of type array, null given in /in/DKZ3B:18 Stack trace: #0 /in/DKZ3B(18): array_walk(NULL, Object(Closure), 'Y') #1 {main} thrown in /in/DKZ3B on line 18
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:
59.95 ms | 401 KiB | 8 Q