3v4l.org

run code in 300+ PHP versions simultaneously
<?php $source=array('contract' => array( 0 => '6', 1 => '6', 2 => '6'), 'folder_id' => array( 0 => '1', 1 => '1', 2 => '1'), 'service' => array( 0 => '2', 1 => '2', 2 => '2'), 'value' => array( 0 => '12', 1 => '12', 2 => '66'), 'currency_id' => array( 0 => '6' , 1 => '9' , 2 => '6')); print_r($source);//just to compare $result=array(); array_walk($source,function($val,$key)use(&$result){ foreach($val as $k=>$v){ $result[$k][$key]=$v; } }); print_r($result);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [contract] => Array ( [0] => 6 [1] => 6 [2] => 6 ) [folder_id] => Array ( [0] => 1 [1] => 1 [2] => 1 ) [service] => Array ( [0] => 2 [1] => 2 [2] => 2 ) [value] => Array ( [0] => 12 [1] => 12 [2] => 66 ) [currency_id] => Array ( [0] => 6 [1] => 9 [2] => 6 ) ) Array ( [0] => Array ( [contract] => 6 [folder_id] => 1 [service] => 2 [value] => 12 [currency_id] => 6 ) [1] => Array ( [contract] => 6 [folder_id] => 1 [service] => 2 [value] => 12 [currency_id] => 9 ) [2] => Array ( [contract] => 6 [folder_id] => 1 [service] => 2 [value] => 66 [currency_id] => 6 ) )

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:
48.2 ms | 404 KiB | 8 Q