php递归无限级分类并返回数组的例子
时间:2021-07-01 10:21:17
帮助过:9人阅读
/** - * 递归 无限级分类 返回数组
- * link:bbs.it-home.org
- * date:2013/2/21
- */
- $conn = mysql_connect('localhost','root','123456');
- mysql_select_db('test');
- mysql_query("set names 'utf8'");
function getCate($pid = 0) - {
- $sql = "select * from cate where pid=".$pid;
- $res = mysql_query($sql);
- if($res)
- {
- while($row = mysql_fetch_assoc($res)){
- $categories[] = $row;
- }
- }
if(0 < count($categories)) - {
- for($i = 0; $i < count($categories); $i++)
- {
- $categories[$i]['child'] = getCate($categories[$i]['id']);
- }
} return $categories; - }
//调用 - $cate = getCate(0);
- ?>
您可能感兴趣的文章:
php无限级分类的递归函数
php实现无限级缓存的类的扩展的代码
php与js制作的无限级可伸缩菜单
php与mysql实现的无限级分类
php把无限级分类生成数组的类
对ecshop中的无限级分类的分析
php写的无限级selectTree类
php用递归方法实现无限级分类的代码 |