Home > php教程 > php手册 > PHP_递归函数时return的Bug

PHP_递归函数时return的Bug

WBOY
Release: 2016-06-13 10:50:38
Original
1023 people have browsed it

最近在用PHP写一些设计模式的小例子,有大量的设计模式都会递归调用对象或者函数。有的时候需要返回处理状态,就会用到return。在JAVA中 只要在函数内部return就可以得到最后的结果。而在PHP中必须要在掉过递归函数的时候加上return才能正常使用。

举个例子

 
01
02
/**
03
*这样的写法在调用时,当$i 04
*/
05
function TestReturn($i){
06
    if($i 07
    {
08
        $i++;
09
        TestReturn($i);
10
    }
11
    return $i;
12
}
13
 
14
/**
15
*在PHP中,必须要在递归调用函数时加上return
16
*/
17
function TestReturn($i){
18
    if($i 19
    {
20
        $i++;
21
        return TestReturn($i);
22
    }
23
    return $i;
24
}
25
 
26
?>


作者:四云麒麟
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template