类方法返回值,奇怪的现象
各位大侠,请看如下代码:
我要实现的功能是,利用一个多维数组输出一个树状结构,下面的参数是多维数组。
//递归树状输出格式一
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>'; }
回复讨论(解决方案)
第 9 行的 $this->accountTreeType1 没有承接第 14 行的返回
第 9 行的 $this->accountTreeType1 没有承接第 14 行的返回
那为什么echo 时,能打印呢
你是如何调用这个方法的?
function return了之后表示该方法已经运行完了,后面的代码都不会执行了。
$str = D('Account')->accountTreeType1($Data);
方法的最后加上
return $this->strLable;
1、class 里strLable定义了没?
2、return了 你不接收返回值你是要做什么?
3、echo 当然可以输出,你是不是没搞清楚什么是递归函数?
加了之后,有返回值了。但是不是很理解为什么这样写。
public function accountTreeType1($arrData){
$strLable .= '
- ';
- '.$val['acc_code'].$val['acc_name'].' ';
foreach($arrData as $val){
if(is_array($val['child'])){
$this->accountTreeType1($val['child']);
}else{
$strLable .= '
}
}
return $strLable.'
}
你都不return 怎么获取值
你都不return 怎么获取值
我刚刚代码有return。只是搞不明白,什么时候return。而且在方法最后面加return,那它递归,每次调用都会return不是吗?
$val[id],id是什么?应该是$id或者"id"吧...所以根本不会返回$this->strLabel
return 是跳出当前方法 你刚才其实调用了当前function好几次 你递归没搞懂
你最好搞懂
return back continue 和递归
public function accountTreeType1($arrData){
$strLable .= '
- ';
- '.$val['acc_code'].$val['acc_name'].' ';
- '.$val['acc_code'].$val['acc_name'].' ';
- 这个可以实现。谢谢你们,我有点明白,我错在哪了。
foreach($arrData as $val){
if(is_array($val['child'])){
$this->accountTre……
这个方法不能返回所有的值
$arrData 打印出来看看
Array
(
[1] => Array
(
[id] => 1
[acc_code] => 1001
[acc_name] => 库存现金
[acc_level] => 1
[acc_detail] => 0
[acc_parent_id] => 0
[acc_root_id] => 1
[acc_state] => 1
[child] => Array
(
[38] => Array
(
[id] => 38
[acc_code] => 100101
[acc_name] => 深圳现钞
[acc_level] => 2
[acc_detail] => 0
[acc_parent_id] => 1
[acc_root_id] => 1
[acc_state] => 1
[child] => Array
(
[39] => Array
(
[id] => 39
[acc_code] => 10010101
[acc_name] => 詹军涛
[acc_level] => 3
[acc_detail] => 0
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
[child] => Array
(
[804] => Array
(
[id] => 804
[acc_code] => 1001010101
[acc_name] => fdsaf
[acc_level] => 4
[acc_detail] => 1
[acc_parent_id] => 39
[acc_root_id] => 1
[acc_state] => 1
)
)
)
[40] => Array
(
[id] => 40
[acc_code] => 10010102
[acc_name] => 林全茂
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[41] => Array
(
[id] => 41
[acc_code] => 10010103
[acc_name] => 吴雪如
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[42] => Array
(
[id] => 42
[acc_code] => 10010104
[acc_name] => 关蓉
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[43] => Array
(
[id] => 43
[acc_code] => 10010105
[acc_name] => 胡振明
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[44] => Array
(
[id] => 44
[acc_code] => 10010106
[acc_name] => 黄锦雄
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[45] => Array
(
[id] => 45
[acc_code] => 10010107
[acc_name] => 陈培怀
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[46] => Array
(
[id] => 46
[acc_code] => 10010108
[acc_name] => 陈镇江
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
[789] => Array
(
[id] => 789
[acc_code] => 435435
[acc_name] => fdsaf
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 38
[acc_root_id] => 1
[acc_state] => 1
)
)
)
[47] => Array
(
[id] => 47
[acc_code] => 100102
[acc_name] => 广州现钞
[acc_level] => 2
[acc_detail] => 0
[acc_parent_id] => 1
[acc_root_id] => 1
[acc_state] => 1
[child] => Array
(
[48] => Array
(
[id] => 48
[acc_code] => 10010201
[acc_name] => 吴昆伦
[acc_level] => 3
[acc_detail] => 1
[acc_parent_id] => 47
[acc_root_id] => 1
[acc_state] => 1
)
)
)
)
)
)
public function accountTreeType1($arrData){
$strLable .= '
- ';
foreach($arrData as $val){
if(is_array($val['child'])){
$strLable .= '
$strLable .= $this->accountTreeType1($val['child']);
}else{
$strLable .= '
}
}
return $strLable.'
}
public function accountTreeType1($arrData){
$strLable .= '
- ';
foreach($arrData as $val){
if(is_array($val['child'])){
$strLable .= '

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Laravel은 직관적 인 플래시 방법을 사용하여 임시 세션 데이터 처리를 단순화합니다. 응용 프로그램에 간단한 메시지, 경고 또는 알림을 표시하는 데 적합합니다. 데이터는 기본적으로 후속 요청에만 지속됩니다. $ 요청-

PHP 클라이언트 URL (CURL) 확장자는 개발자를위한 강력한 도구이며 원격 서버 및 REST API와의 원활한 상호 작용을 가능하게합니다. PHP CURL은 존경받는 다중 프로모토콜 파일 전송 라이브러리 인 Libcurl을 활용하여 효율적인 execu를 용이하게합니다.

Alipay PHP ...

Laravel은 간결한 HTTP 응답 시뮬레이션 구문을 제공하여 HTTP 상호 작용 테스트를 단순화합니다. 이 접근법은 테스트 시뮬레이션을보다 직관적으로 만들면서 코드 중복성을 크게 줄입니다. 기본 구현은 다양한 응답 유형 단축키를 제공합니다. Illuminate \ support \ Facades \ http를 사용하십시오. http :: 가짜 ([ 'google.com'=> 'Hello World', 'github.com'=> [ 'foo'=> 'bar'], 'forge.laravel.com'=>

고객의 가장 긴급한 문제에 실시간 인스턴트 솔루션을 제공하고 싶습니까? 라이브 채팅을 통해 고객과 실시간 대화를 나누고 문제를 즉시 해결할 수 있습니다. 그것은 당신이 당신의 관습에 더 빠른 서비스를 제공 할 수 있도록합니다.

기사는 PHP 5.3에 도입 된 PHP의 LSB (Late STATIC BING)에 대해 논의하여 정적 방법의 런타임 해상도가보다 유연한 상속을 요구할 수있게한다. LSB의 실제 응용 프로그램 및 잠재적 성능

이 기사에서는 프레임 워크에 사용자 정의 기능 추가, 아키텍처 이해, 확장 지점 식별 및 통합 및 디버깅을위한 모범 사례에 중점을 둡니다.

기사는 입력 유효성 검사, 인증 및 정기 업데이트를 포함한 취약점을 방지하기 위해 프레임 워크의 필수 보안 기능을 논의합니다.
