php怎么获取分类下所有子类_php缓存文件写入

发布时间:2020-12-10编辑:脚本学堂
有关php获取分类下所有子类的方法,使用php递归算法获取指定分类中的所有子类,并实现了php缓存文件的写入方法,需要的朋友参考下。

1、获取php分类中子类的代码
 

复制代码 代码示例:
<?php
static function getMenuTree($arrCat, $parent_id = 0, $level = 0,$all=True)
{
static  $arrTree; //使用static代替global
if(!$all) $arrTree ='';
if( empty($arrCat)) return FALSE;
$level++;
if($level == 1) $arrTree[] = $parent_id;
foreach($arrCat as $key => $value)
{
if($value['parent_cid' ] == $parent_id)
{
//$value[ 'level'] = $level;
$arrTree[] = $value['cid'];
unset($arrCat[$key]); //注销当前节点数据,减少已无用的遍历
self::getMenuTree($arrCat, $value[ 'cid'], $level);
} // www.plcxue.com
}
return $arrTree;
}
 

使用以上方法,需要把分类写到php缓存文件中。

2、缓存文件写入方法:
 

复制代码 代码示例:
public function actionIndex2()
{
$filepath = Yii::getPathOfalias('application')。'/data/';
$arr = array();
$db = Yii::app()->db;
$listinfo = $db->createCommand("select name,cid,parent_cid,root_cid from item_cat_info")->queryAll();
foreach($listinfo as $val)
{
$arr[$val['cid']] = array('cid'=>$val['cid'],'name'=>$val['name'],'parent_cid'=>$val['parent_cid'],'root_cid'=>$val['root_cid']);
}
$applist = "<?phpnreturn ".var_export($arr, true)。";n?>";
file_put_contents($filepath.'itemcat.php', $applist);
}