我想使用递归显示一些结果
首先这是我的表结构

contactid       name        reportsto
 244797          ankit         9876
 438             Mukti         244797
 445             Moorthy       244797
 446             P K Roy       244797
 448             Suruchi       438
 542             Lalit Kumar   438
 543             Balkrishan    542


当我print_r($ printres)时,我仅收到ID报告为244797的ID,请检查我的代码并评估我的问题,谢谢。

最佳答案

这不是一个完美的例子,但我希望这会帮助您入门。看起来像这样:

function recursive($reportsTo){
    //make some logic that if contactid == reportsto does something (make table or layout)
    recursive($contactId)
}

recursive(0)

09-11 04:32