Symfony 2 - querybuilder嵌套树数组

时间:2015-03-24 14:51:56

标签: symfony

这是一个场景:

   id  parent_id  search
   1   null       hello
   2   1          hello/something
   3   1          hello/new
   4   null       new
   5   4          new/hello

然后我通过querybuilder并搜索“hello”到这个结果:

   1   null       hello
   2   1          hello/something
   3   1          hello/new
   5   4          new/hello
   5   4          new/hello

如果我只想获取childs中的所有元素,如何通过q​​uerybuilder构建嵌套树,包括“hello / something”?

如何使用symfony构建数组?

1 个答案:

答案 0 :(得分:0)

假设您正在使用Doctrine,请查看tree extension in DoctrineExtensions