-
-
/**
- * 递归 无限级分类 返回数组
- * 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 {
- for($i = 0; $i {
- $categories[$i]['child'] = getCate($categories[$i]['id']);
- }
}
return $categories;
- }
//调用
- $cate = getCate(0);
- ?>
-
复制代码
您可能感兴趣的文章:
php无限级分类的递归函数
php实现无限级缓存的类的扩展的代码
php与js制作的无限级可伸缩菜单
php与mysql实现的无限级分类
php把无限级分类生成数组的类
对ecshop中的无限级分类的分析
php写的无限级selectTree类
php用递归方法实现无限级分类的代码
|