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.= "" ; //字符串构建 get_str($row['classid']); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级 } } return $str; } " .$row['classid']. " ". $row['classname']. " ID: 882233
". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']."
求高手赐教。
回复讨论(解决方案)
试试
//无限分类显示函数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.= "" ; //字符串构建 get_str($row['classid'], $depth+1); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级 } } return $str; } " .$row['classid']. " ".str_repeat ( "└" ,$depth). $row['classname']. " ID: 882233
". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']."
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.= "" ; //字符串构建 get_str($row['classid'], $depth+1); //调用get_str(),将记录集中的id参数传入函数中,继续查询下级 } } return $str; } " .$row['classid']. " ".str_repeat ( "└" ,$depth). $row['classname']. " ID: 882233
". $row['classtype']." ". $row['classid']." ". $row['classid']." ". $row['classid']."
这个可以用,高人呀,我折腾了一天,非常感谢。
上一篇: sqlserver in 子查询问题
下一篇: 解析node中koa中间件机制问题