3v4l.org

run code in 300+ PHP versions simultaneously
<?php $category = [ [ 'sort_id' => 11, 'sort_name' => '一级目录', 'sort_child' => 0 ], [ 'sort_id' => 12, 'sort_name' => '二级目录', 'sort_child' => 11 ], [ 'sort_id' => 13, 'sort_name' => '二级目录', 'sort_child' => 11 ], [ 'sort_id' => 14, 'sort_name' => '三级目录', 'sort_child' => 13 ], [ 'sort_id' => 15, 'sort_name' => '三级目录', 'sort_child' => 13 ], [ 'sort_id' => 16, 'sort_name' => '三级目录', 'sort_child' => 13 ], [ 'sort_id' => 17, 'sort_name' => '一级目录2', 'sort_child' => 0 ], [ 'sort_id' => 18, 'sort_name' => '三级目录', 'sort_child' => 12 ], [ 'sort_id' => 19, 'sort_name' => '三级目录', 'sort_child' => 12 ] ]; $newCategory = []; processCategory($category, 0, $newCategory); $leave = 0; foreach ($newCategory as $currentCategory) { echo $currentCategory['sort_name']; } function processCategory(&$category, $parrentId, &$newCategory) { foreach ($category as $currentCategory) { if ($currentCategory['sort_child'] != $parrentId) continue; array_push($newCategory, $currentCategory); processCategory( $category, $currentCategory['sort_id'], $newCategory ); } }
Output for git.master, git.master_jit, rfc.property-hooks
一级目录二级目录三级目录三级目录二级目录三级目录三级目录三级目录一级目录2

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:
58 ms | 401 KiB | 8 Q