3v4l.org

run code in 300+ PHP versions simultaneously
<?php $tree = array( 1 => array( 'parent_id' => null, 'name' => 'root', 'depth' => 0, ), 11 => array( 'parent_id' => 1, 'name' => 'a', 'depth' => 1, ), 12 => array( 'parent_id' => 1, 'name' => 'b', 'depth' => 1, ), 111 => array( 'parent_id' => 11, 'name' => 'aa', 'depth' => 2, ), 2 => array( 'parent_id' => null, 'name' => 'other root', 'depth' => 0, ) ); foreach ($tree as $key => &$sub) { if (isset($sub['parent_id'])) { $tree[$sub['parent_id']]['children'][$key] = &$sub; } } unset($sub); // unset the reference to make sure to not overwrite it later... // now remove the entries with parents foreach ($tree as $key => $sub) { if (isset($sub['parent_id'])) unset($tree[$key]); } var_dump($tree);
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [1]=> array(4) { ["parent_id"]=> NULL ["name"]=> string(4) "root" ["depth"]=> int(0) ["children"]=> array(2) { [11]=> array(4) { ["parent_id"]=> int(1) ["name"]=> string(1) "a" ["depth"]=> int(1) ["children"]=> array(1) { [111]=> array(3) { ["parent_id"]=> int(11) ["name"]=> string(2) "aa" ["depth"]=> int(2) } } } [12]=> array(3) { ["parent_id"]=> int(1) ["name"]=> string(1) "b" ["depth"]=> int(1) } } } [2]=> array(3) { ["parent_id"]=> NULL ["name"]=> string(10) "other root" ["depth"]=> int(0) } }

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.28 ms | 403 KiB | 8 Q