3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array( 55 => array( 'ident' => 'test 1', ), 77 => array( 'parent_id' => 55, 'ident' => 'test 2', ), 109 => array( 'parent_id' => 77, 'ident' => 'test 3', ), 78 => array( 'parent_id' => 55, 'ident' => 'test 4', ), 25 => array( 'ident' => 'test 5', ) ); foreach ($array as $key => &$sub) { if (isset($sub['parent_id'])) { $array[$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 ($array as $key => $sub) { if (isset($sub['parent_id'])) unset($array[$key]); } var_dump($array);
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [55]=> array(2) { ["ident"]=> string(6) "test 1" ["children"]=> array(2) { [77]=> array(3) { ["parent_id"]=> int(55) ["ident"]=> string(6) "test 2" ["children"]=> array(1) { [109]=> array(2) { ["parent_id"]=> int(77) ["ident"]=> string(6) "test 3" } } } [78]=> array(2) { ["parent_id"]=> int(55) ["ident"]=> string(6) "test 4" } } } [25]=> array(1) { ["ident"]=> string(6) "test 5" } }

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:
38.47 ms | 402 KiB | 8 Q