php递归函数中使用return的注意事项_PHP

WBOY
Release: 2016-06-01 11:56:32
Original
749 people have browsed it

php递归函数中使用return的时候会碰到无法正确返回想要的值得情况,如果不明白其中的原因,很难找出错误的,就下面的具体例子来说明一下吧:
复制代码 代码如下:
function test($i){
$i-=4;
if($ireturn $i;
}else{
test($i);
}
}
echotest(30);

这段代码看起来没有问题,如果不运行一下估计你也不会认为他有什么问题,及时运行起来发现有问题你也不一定知道哪里有问题,但其实这个函数的else里面是有问题的。在这段代码里面执行的结果是没有返回值的。所以虽然满足条件 $i复制代码 代码如下:
function test($i){
$i-=4;
if($ireturn $i;
}else{
return test($i);//增加return,让函数返回值
}
}
echotest(30);

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template