当前位置:Gxlcms > PHP教程 > php递归无限级分类并返回数组的例子

php递归无限级分类并返回数组的例子

时间:2021-07-01 10:21:17 帮助过:9人阅读

  1. /**

  2. * 递归 无限级分类 返回数组
  3. * link:bbs.it-home.org
  4. * date:2013/2/21
  5. */
  6. $conn = mysql_connect('localhost','root','123456');
  7. mysql_select_db('test');
  8. mysql_query("set names 'utf8'");

  9. function getCate($pid = 0)

  10. {
  11. $sql = "select * from cate where pid=".$pid;
  12. $res = mysql_query($sql);
  13. if($res)
  14. {
  15. while($row = mysql_fetch_assoc($res)){
  16. $categories[] = $row;
  17. }
  18. }

  19. if(0 < count($categories))

  20. {
  21. for($i = 0; $i < count($categories); $i++)
  22. {
  23. $categories[$i]['child'] = getCate($categories[$i]['id']);
  24. }

  25. }

  26. return $categories;

  27. }

  28. //调用

  29. $cate = getCate(0);
  30. ?>

您可能感兴趣的文章: php无限级分类的递归函数 php实现无限级缓存的类的扩展的代码 php与js制作的无限级可伸缩菜单 php与mysql实现的无限级分类 php把无限级分类生成数组的类 对ecshop中的无限级分类的分析 php写的无限级selectTree类 php用递归方法实现无限级分类的代码

人气教程排行