尝试在 PHP 中获取线程/嵌套注释
我在 MySQL 表中有数据(称为 info),如下所示:
_______________________ id | text | parent | 1 | a | NULL | 2 | b | 1 | 3 | c | 1 | 4 | d | 2 | -----------------------
(id 自动递增)
我想在 PHP 中显示此数据,如下所示:
>a (ID 1) >>b(ID 2) >>>d (ID 4, parent 2) >>c (ID 3)
我尝试了不同的方法,但我似乎无法让他们以任何一种方式工作。我知道我需要一个递归函数,但我该怎么做呢?一个简单的指针就足够了;谢谢。
I have data in a MySQL table, (called info), like this:
_______________________ id | text | parent | 1 | a | NULL | 2 | b | 1 | 3 | c | 1 | 4 | d | 2 | -----------------------
(id is auto incrementing)
I want to display this data in PHP, like this:
>a (ID 1) >>b(ID 2) >>>d (ID 4, parent 2) >>c (ID 3)
I have attempted different methods, but I can't seem to be able to get them to work either way. I know I need a recursive function, but how would I do this? A simple pointer would be enough; thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您得到的表:
使用此函数迭代:
Well as you are getting the table:
Iterate using this function: