首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

类方法返回值,奇怪的现象解决思路

2013-03-13 
类方法返回值,奇怪的现象本帖最后由 xuzuning 于 2013-03-08 14:59:52 编辑各位大侠,请看如下代码:我要实

类方法返回值,奇怪的现象
本帖最后由 xuzuning 于 2013-03-08 14:59:52 编辑 各位大侠,请看如下代码:
我要实现的功能是,利用一个多维数组输出一个树状结构,下面的参数是多维数组。

//递归树状输出格式一

public function accountTreeType1($arrData){

$this->strLable = $this->strLable.'<ul>';

foreach($arrData as $val){

if(is_array($val['child'])){
$this->strLable = $this->strLable.'<li>'.$val['acc_code'].$val['acc_name'];
$this->accountTreeType1($val['child']);
}else{

$this->strLable = $this->strLable.'<li>'.$val['acc_code'].$val['acc_name'].'</li>';
                                 if($val[id]=='最后一个ID'){
                                      return $this->strLable; //在这里没有返回值,不过用echo $this->strLable;是可以打印出来,但是返回值为空。
                                 }

}

}

$this->strLable = $this->strLable.'</ul>';

}

[解决办法]
方法的最后加上
return $this->strLable;
[解决办法]
 public function accountTreeType1($arrData){
        $strLable .= '<ul>';
        foreach($arrData as $val){
            if(is_array($val['child'])){
                $strLable .= '<li>'.$val['acc_code'].$val['acc_name'].'</li>';
                $strLable .= $this->accountTreeType1($val['child']);
            }else{
                $strLable .= '<li>'.$val['acc_code'].$val['acc_name'].'</li>';
            }
        }
        return $strLable.'</ul>';
 }

热点排行