博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论递归无极显示
阅读量:6810 次
发布时间:2019-06-26

本文共 1429 字,大约阅读时间需要 4 分钟。

'a','con'=>'b');$b[] = $a;var_dump($b);echo '
';$aa[]['son2'] = array('name' =>'a','con'=>'b');var_dump($aa);exit;*/header('Content-type:text/html;charset=UTF-8');mysql_connect('localhost', 'root', '123');mysql_select_db('wordpress');mysql_query('set names utf8');$sql = 'select * from emlog_comment where gid = 1';$rs = mysql_query($sql);$categories = array();while ($row = mysql_fetch_array($rs)) { $categories[] = $row;}$tree = show_comment($categories, 0);var_dump($tree);echo procHtml($tree);function show_comment($categories, $pid) { $array = ''; foreach($categories as $category) { if ($pid == $category['pid']) { $category['son'] = show_comment($categories, $category['cid']); $array[] = $category; } } return $array;}function procHtml($tree){$html = '';foreach($tree as $t){ if($t['son'] == '') { $html .= "
  • {$t['comment']}
  • "; } else { $html .= "
  • ".$t['comment']; $html .= procHtml($t['son']); $html = $html."
  • "; }}return $html ? '
      '.$html.'
    ' : $html ;}function getTree($data, $pId){$html = '';foreach($data as $k => $v){ if($v['cate_ParentId'] == $pId) { //父亲找到儿子 $html .= "
  • ".$v['cate_Name']; $html .= getTree($data, $v['cate_Id']); $html = $html."
  • "; }}return $html ? '
      '.$html.'
    ' : $html ;}//echo getTree($data, 0);

      

    转载于:https://www.cnblogs.com/adtuu/p/4688303.html

    你可能感兴趣的文章
    Mysql的存储过程(以Mysql为例进行讲解)
    查看>>
    深入浅出JSON[转]
    查看>>
    C#使用ICSharpCode.SharpZipLib压缩文件[转]
    查看>>
    用vc++如何得到汉字的Unicode编码?
    查看>>
    (原創) HDL只是代表一個model (IC Design) (Verilog)
    查看>>
    System.Net.Mail 例子 [收藏]
    查看>>
    WPF - 模板查看工具:Show Me The Template及如何查看第三方主题
    查看>>
    C语言 return没有返回值.
    查看>>
    超级详细Tcpdump 的用法
    查看>>
    JAVA的String 类
    查看>>
    Android LayoutInflater学习
    查看>>
    C# GIZP解码
    查看>>
    Java并发编程:并发容器之ConcurrentHashMap(转载)
    查看>>
    Java ConcurrentModificationException异常原因和解决方法
    查看>>
    traceroute
    查看>>
    使用FileUpload控件上传文件时对文件大小的限制
    查看>>
    C#线程系列讲座(1):BeginInvoke和EndInvoke方法
    查看>>
    马的日字走法和knight是同意类型的。
    查看>>
    Web.config自定义节点configSections
    查看>>
    codility上的问题 (23)Chi 2012
    查看>>