使用遞歸函數從資料庫結果產生多維數組
要產生表示頁或類別等分層資料的巢狀數組,遞歸函數經常被雇用。目標是獲取資料庫記錄的平面數組並將其轉換為反映父子關係的結構化數組。
樹建構的遞歸函數
以下函數 buildTree完成此任務:
def buildTree(elements, parentId=0): branch = [] for element in elements: if element['parent_id'] == parentId: children = buildTree(elements, element['id']) if children: element['children'] = children branch.append(element) return branch
如何實現有效
用法範例
要將資料庫記錄處理為分層樹,請使用:
tree = buildTree(database_result)
樹變數將現在包含一個巢狀數組,表示頁面或類別的層次結構。
以上是遞歸函數如何從平面資料庫結果建立多維數組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!