文件名称:无限分类类库
文件大小:3KB
文件格式:PHP
更新时间:2018-06-05 14:14:42
无限分类
$deepcate=new deepcate; class deepcate{ function getList($table,$pid=0,&$result=array(),$spac=0){ $sql="select * from {$table} where clsPath =$pid and status='1' order by clsLvl asc"; //echo $sql."
"; $res=mysql_query($sql); while($row=mysql_fetch_assoc($res)){ $row['clsName']=str_repeat(' ',$spac).'|--'.$row['clsName']; $result[]=$row; $this->getList($table,$row['id'],$result,$spac+4);//$spac为str_repeat的步长 } return $result; }