Settings | Sign in | Sign up

There are currently 2 posts.

php遍历子孙节点真复杂啊!!!

Floor 1 产品的注销 12/20/10 13:20
Floor 2 产品的注销 12/20/10 13:21

所以我把代码备份一下:

<?php

# 获取当前节点下的全部子孙节点
  $catalog_grandson_nodes=array();
  $cc=array($catalog_baseid);
  for ($jibie=$catalog_gread+1;true;$jibie++){
   $ki=sExplode(',',$cc);
   $sql="select 编号,所属父类 from 贴吧分类 where 级别=".$jibie." and 所属父类 in (".$ki.")";
   $rs=db_query($sql);
   if (db_num($rs)<1) break; # 若已到了分支末端
   $cc=array();
   while ($row=db_eof($rs)){
    $catalog_grandson_nodes[count($catalog_grandson_nodes)]=$row[0];
    $cc[count($cc)]=$row[0];
   }
  }
  $catalog_grandson_nodes_string=sExplode(",",$catalog_grandson_nodes);
  if ($catalog_grandson_nodes_string=="") $catalog_grandson_nodes_string=$catalog_baseid;

?>

Content converter:

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.
©2010-2025 Purasbar Ver3.0 [Mobile] [Desktop]
Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported license.