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

PHP无限级分类的展示问题。折腾一天了,搞不定呀

程序员文章站 2022-05-15 17:59:37
...
函数:
//无限分类显示函数function get_str($id = 0) {     global $str;     $sql = "select classid,classname,classstate,classtype,classurl,classpage,classorder,classtitle,classkeyword,classdescription,classpid from bz_class where classpid= $id";      $result = mysql_query($sql);//查询pid的子类的分类     if($result && mysql_affected_rows()){//如果有子类         while ($row = mysql_fetch_array($result)) { //循环记录集		 	$str.= "
" .$row['classid']. "
". $row['classname']. "

ID: 882233

". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']." " ; //字符串构建 get_str($row['classid']); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级 } } return $str; }



求高手赐教。


回复讨论(解决方案)

试试

//无限分类显示函数function get_str($id = 0, $depth=0) {     global $str;     $sql = "select classid,classname,classstate,classtype,classurl,classpage,classorder,classtitle,classkeyword,classdescription,classpid from bz_class where classpid= $id";      $result = mysql_query($sql);//查询pid的子类的分类     if($result && mysql_affected_rows()){//如果有子类         while ($row = mysql_fetch_array($result)) { //循环记录集            $str.= "
" .$row['classid']. "
".str_repeat ( "└" ,$depth). $row['classname']. "

ID: 882233

". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']." " ; //字符串构建 get_str($row['classid'], $depth+1); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级 } } return $str; }

get_str($row['classid']); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级

这句返回的$str没有使用。



麻烦您,能写个代码我学习一下吗?折腾一天了。

参考: http://www.jb51.net/article/36220.htm

试试

//无限分类显示函数function get_str($id = 0, $depth=0) {     global $str;     $sql = "select classid,classname,classstate,classtype,classurl,classpage,classorder,classtitle,classkeyword,classdescription,classpid from bz_class where classpid= $id";      $result = mysql_query($sql);//查询pid的子类的分类     if($result && mysql_affected_rows()){//如果有子类         while ($row = mysql_fetch_array($result)) { //循环记录集            $str.= "
" .$row['classid']. "
".str_repeat ( "└" ,$depth). $row['classname']. "

ID: 882233

". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']." " ; //字符串构建 get_str($row['classid'], $depth+1); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级 } } return $str; }



这个可以用,高人呀,我折腾了一天,非常感谢。