Sử dụng đệ quy! Lưu ý:đoạn mã dưới đây không an toàn cho đồ thị tuần hoàn (các nút có thể không phải là tổ tiên của chúng)!
printChildren($items,0);
function printChildren(array $items, $parentId){
foreach($items as $item){
if($item['parent']==$parentId){
print '<li>';
print $item['label']; //or whatever you want about the current node
print '<ul>';
printChildren($items, $item['id']);
print '</ul></li>';
}
}
}