这是一个场景:
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中的所有元素,如何通过querybuilder构建嵌套树,包括“hello / something”?
如何使用symfony构建数组?