递归完成后,如何在PHP中清除静态变量?

时间:2011-04-28 02:33:27

标签: php recursion static-variables

所以例如,我在递归函数中有一个静态变量,我希望该变量在每次递归调用时都是静态的,但是一旦递归完成,我希望重置该变量,以便下次我使用递归函数时,它从头开始。

例如,我们有一个函数:

<?php
function someFunction() {
    static $variable = null;
    do stuff; change value of $variable; do stuff;
    someFunction(); # The value of $variable persists through the recursion.
    return ($variable);
}
?>

我们可以第一次调用这个函数:someFunction();它会正常工作。然后我们再次调用它:someFunction();但这一次它以$variable的上一个值开头。我们怎样才能在第一次调用函数的递归后重置它,这样我们第二次调用它就像重新开始一样?

6 个答案:

答案 0 :(得分:8)

最简单的方法是将变量作为参数传递。我不会在这里弄乱静态。

function someFunction($value = null) {
    do stuff; change value of $value; do stuff;
    someFunction($value); # The value of $variable persists through the recursion.
    return $value;
}

作为一般规则,您必须将参数传递给函数(除非它们对同一类中的类属性进行操作)......它们不应该是全局的,并且在递归的情况下,它可能不是一个好主意。他们是静态的...对待一个像黑盒子这样的功能...值进去......他们用它们完成了一些事情并且结果出来了。他们不应该意识到其他地方发生的事情。有一些例外,但IMO很少。

答案 1 :(得分:3)

好吧,好吧,我看到prodigitals在答案上把我弄糊涂了。这是一个演示:

http://codepad.org/4R0bZf1B

<?php
function someFunction($varset = NULL) {
    static $variable = NULL;
    if ($varset !== NULL) $variable = $varset;
    $variable++;
    echo $variable;
    if ($variable < 5) someFunction();
    return $variable;
}

someFunction(4);
echo "\n";
someFunction(2);
echo "\n";
someFunction(3);

?>

输出:

5
345
45

答案 2 :(得分:3)

Prodigitalsons的答案是最好的解决方案,但是因为你要求使用静态变量的解决方案,我没有看到适当的答案,这是我的解决方案。

完成后,只需将静态变量设置为null即可。以下将在两个电话上打印12345.

function someFunction() {
    static $variable = 0;
    $variable++;
    echo $variable;
    if ($variable < 5) someFunction();

    $returnValue = $variable;
    $variable = null;
    return $returnValue;
}
someFunction();
echo "\n";
someFunction();
echo "\n";

或者使用初始化程序将其与上一个答案结合起来:

function someFunction($initValue = 0) {
    static $variable = 0;
    if($initValue !== 0) {
        $variable = $initValue;    
    }
    $variable++;
    echo $variable;
    if ($variable < 5) someFunction();

    $returnValue = $variable;
    $variable = null;
    return $returnValue;
}

someFunction(2);
echo "\n";
someFunction(3);
echo "\n";
someFunction();
echo "\n";
someFunction(-2);

将输出:

345
45
12345
-1012345

答案 3 :(得分:0)

您可以使用$depth计数器:

function someFunction() {
    static $variable = null, $depth= 0;
    $depth++;

    do stuff; change value of $variable; do stuff;
    someFunction(); # The value of $variable persists through the recursion.

    $depth--;
    $temp = $variable;
    if($depth== 0){
        $variable = null;
    }
    return ($temp);
}

答案 4 :(得分:0)

<?php
function someFunction() {
    static $variable = null;
    do stuff; change value of $variable; do stuff;
    someFunction(); # The value of $variable persists through the recursion.
    $variable = null;
    return ($variable);
}
?>

答案 5 :(得分:-1)

我找到了解决方案:

<?php
function someFunction($clear_static = false) {
    static $variable = null;
    if ($clear_static) {
        $variable = null;
    }
    do stuff; change value of $variable; do stuff;
    someFunction(); # The value of $variable persists through the recursion.
    return ($variable);
}

someFunction(); # first manual call.
someFunction(); # second manual call, $variable has value from previous use.
someFunction(true); # third manual call, value of $variable starts like new.
?>