3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr1 = [1,2,3]; $arr2 = ["A","B","C"]; $arr = [["A"=>$arr1, "B"=>$arr2],["B"=>$arr1, "C"=>$arr2]]; $callback = function($v1, $v2){ return $v1."-".$v2; }; reset($arr[0]); reset($arr[1]); $res = []; while (current($arr[0]) !== false){ $key = key($arr[0])."-".key($arr[1]); $value = array_map($callback, current($arr[0]), current($arr[1])); $res[$key] = $value; next($arr[0]); next($arr[1]); } print_r($res);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [A-B] => Array ( [0] => 1-1 [1] => 2-2 [2] => 3-3 ) [B-C] => Array ( [0] => A-A [1] => B-B [2] => C-C ) )

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.76 ms | 401 KiB | 8 Q