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 5.3.0 - 5.3.27, 5.4.0 - 5.4.21
Parse error: syntax error, unexpected ',', expecting ')' in /in/l7fso on line 16
Process exited with code 255.

preferences:
199.93 ms | 1395 KiB | 57 Q