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($tot[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
Warning: Undefined variable $tot in /in/oXEQH on line 13 Warning: Trying to access array offset on value of type null in /in/oXEQH on line 13 Fatal error: Uncaught TypeError: key(): Argument #1 ($array) must be of type array, null given in /in/oXEQH:13 Stack trace: #0 /in/oXEQH(13): key(NULL) #1 {main} thrown in /in/oXEQH on line 13
Process exited with code 255.
Output for rfc.property-hooks
Warning: Undefined variable $tot in /in/oXEQH on line 13 Warning: Trying to access array offset on null in /in/oXEQH on line 13 Fatal error: Uncaught TypeError: key(): Argument #1 ($array) must be of type array, null given in /in/oXEQH:13 Stack trace: #0 /in/oXEQH(13): key(NULL) #1 {main} thrown in /in/oXEQH on line 13
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:
64.36 ms | 401 KiB | 8 Q