3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr[] = ["_source" => ["block" => ["Kurud"], "district" => ["Dhamtari"], "state" => ["Chhattisgarh"]]]; $arr[] = ["_source" => ["block" => ["North-Bangeluru"], "district" => ["Bangalore"], "state" => ["Karnataka"]]]; $keys = array_keys($arr[0]["_source"]); $res[] = $keys; foreach($arr as $e) { $temp = []; foreach($keys as $k) $temp[] = $e["_source"][$k][0]; $res[] = $temp; } print_r($res);
Output for git.master_jit, git.master, rfc.property-hooks
Array ( [0] => Array ( [0] => block [1] => district [2] => state ) [1] => Array ( [0] => Kurud [1] => Dhamtari [2] => Chhattisgarh ) [2] => Array ( [0] => North-Bangeluru [1] => Bangalore [2] => Karnataka ) )

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:
27.69 ms | 406 KiB | 5 Q