欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2023-12-28 23:21:16
...
  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 {

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

  24. return $categories;

  25. }
  26. //调用

  27. $cate = getCate(0);
  28. ?>
复制代码
您可能感兴趣的文章: php无限级分类的递归函数 php实现无限级缓存的类的扩展的代码 php与js制作的无限级可伸缩菜单 php与mysql实现的无限级分类 php把无限级分类生成数组的类 对ecshop中的无限级分类的分析 php写的无限级selectTree类 php用递归方法实现无限级分类的代码

上一篇:

下一篇: