php 無制限のカテゴリの親カテゴリとサブカテゴリのトレーサビリティ方法、コード スニペットは次のとおりです:
クリップボードにコピー引用コンテンツ:
[www.bkjia.com]
//すべてのリーフノードを返します
public function scanNodeOfTree($result,$fid){
$checkexist = false;
for ($i=0; $i
if($ fid) == $result[$i]['ParentId']){
$checkexist = true;
$arr .= $this->scanNodeOfTree($result,$result[$i]['ID']) ' ,';
}
}
if(!$checkexist){
return $fid;
}
return $arr;
//すべての上位ノードを返す
public function getNodeOfTree($result,$id, $arr) ){
if($id == 0){
return $arr;
}
foreach ($result as $items){
if($id == $items['ID']){
$arr [] = array($items['CateName'],$items['ID']);
$return = $this->getNodeOfTree($result,$items['ParentId'],$arr);
$return
}
http://www.bkjia.com/PHPjc/363936.html
www.bkjia.comtruehttp://www.bkjia.com/PHPjc/363936.html技術記事 PHP 無限分類の親分類とサブカテゴリのトレース方法のコード スニペットは次のとおりです: クリップボードにコピー 引用されたコンテンツ: [www.veryhuo.com] //すべてのリーフ ノードを返す public funct...