要实现无限级分类,递归一般是第一个也是最容易想到的,但是递归一般被认为占用资源的方法,所以很多系统是不考虑使用递归的 本文还是通过数据库的设计,用一句sql语句实现 数据库字段大概如下:
代码如下:
可以假设有如下的数据:
代码如下:
PHP;">
Query($sql);
while($rows=$nbs->fetch_array($result)){
if(substr_count($rows['path'],',')>2){
for($i=0;$i<(substr_count($rows['path'],')-2);$i++)
echo ‘ ‘;
}
echo $rows['class_name'].'
'; } ?>
原文链接:https://www.f2er.com/php/24206.html'; } ?>
$conn = MysqL_connect ( 'localhost','root','root' );
MysqL_select_db ( 'wanggou123',$conn );
MysqL_query ( 'set names UTF8' );
$sql = "select id,concat(catpath,'-',id) as abspath,name from category order by abspath";
$query = MysqL_query ( $sql );
while ( $row=MysqL_fetch_array($query)) {
/**
- 第一种展示方法
/
/$space = str_repeat ( '',count ( explode ( '-',$row ['abspath'] ) ) - 1 );
echo $space . $row ['name'] . '
';*/
/*
第二种展示方法
/
$space = str_repeat ( '——',$row ['abspath'] ) ) - 1 );
$option .= '' . $space . $row ['name'] . '
';
}
echo $option;
exit();
echo '<select name="opt">' . $option . '';