3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ori=json_decode(<<<JSON [{"category":"ABC","orderID":"12345","Name":"Pen","Name2":"Black"}, {"category":"ABC","orderID":"34545","Name":"Pencil","Name2":"White"}, {"category":"ABC","orderID":"34545","Name":"Pen","Name2":"Black"}, {"category":"DEF","orderID":"12345","Name":"Pencil","Name2":"Black"}, {"category":"DEF","orderID":"12345","Name":"Pen","Name2":"White"}] JSON ,true); $result=array(); while($row=array_shift($ori))//Pretend that we're fetching record from DB { $result[$row["category"]][$row["orderID"]][]=array("Name"=>$row["Name"],"Name2"=>$row["Name2"]); } print_r($result);//This should be better //But if you insist, this can help: array_walk($result,function(&$v,$k){ $x=array("category"=>$k,"children"=>array()); array_walk($v,function($arr,$oid)use(&$x){ $x["children"][]=array("orderID"=>$oid,"children"=>$arr); }); $v=$x; }); print_r(array_values($result));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [ABC] => Array ( [12345] => Array ( [0] => Array ( [Name] => Pen [Name2] => Black ) ) [34545] => Array ( [0] => Array ( [Name] => Pencil [Name2] => White ) [1] => Array ( [Name] => Pen [Name2] => Black ) ) ) [DEF] => Array ( [12345] => Array ( [0] => Array ( [Name] => Pencil [Name2] => Black ) [1] => Array ( [Name] => Pen [Name2] => White ) ) ) ) Array ( [0] => Array ( [category] => ABC [children] => Array ( [0] => Array ( [orderID] => 12345 [children] => Array ( [0] => Array ( [Name] => Pen [Name2] => Black ) ) ) [1] => Array ( [orderID] => 34545 [children] => Array ( [0] => Array ( [Name] => Pencil [Name2] => White ) [1] => Array ( [Name] => Pen [Name2] => Black ) ) ) ) ) [1] => Array ( [category] => DEF [children] => Array ( [0] => Array ( [orderID] => 12345 [children] => Array ( [0] => Array ( [Name] => Pencil [Name2] => Black ) [1] => Array ( [Name] => Pen [Name2] => White ) ) ) ) ) )

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:
43.1 ms | 409 KiB | 8 Q