我想不通。我有mysql表:
id | name | sub
1 | FirstTab | 0
2 | SecondTab| 0
3 | ThirdTab | 0
4 | FourthTab| 1
5 | FifthTab | 1
6 | SixthTab | 2
我想看到这样的树:
- FirstTab
-- FourthTab
-- FifthTab
- SecondTab
-- SixthTab
- ThirdTab
所以我得到了
$sth = $this->db->prepare('SELECT ...');
$sth->execute();
$sth->fetchAll();
以及如何从 $sth 制作树?Foreach 没有帮助:(