Home >Backend Development >PHP Tutorial >Three ways to implement recursive functions in PHP

Three ways to implement recursive functions in PHP

墨辰丷
墨辰丷Original
2018-06-07 17:11:041542browse

This article mainly introduces three recursive function implementation methods in PHP. Interested friends can refer to it. I hope it will be helpful to everyone.

Recursive functions are a commonly used type of function in programming. Its characteristic is that the function itself can call itself, but it must be conditionally judged before calling itself, otherwise it will cause infinite calls. This article lists three recursive function implementation methods. The first uses references as parameters, the second uses global variables, and the third uses static variables. Understanding such problems requires some basic knowledge, including global variables, references, and static variables. understanding, and also need to have an understanding of their scope of action. No more nonsense here, please see below for detailed introduction.

The first method: use references as parameters

Regardless of whether references are parameters or not, you must first understand what a reference is? A reference simply means that two variables with different names point to the same storage address. Originally, each variable had its own storage address, and assignment and deletion went their own way.

Okay now, the two variables share a storage address. $a=&$b; . What it actually means is that $a has to share a room with $b regardless of its original storage address. Therefore any change to the stored address value will affect both values.​

Functions originally do their own thing, even if they are functions with the same name. Recursive functions consider taking references as parameters and becoming a bridge to form data sharing between two functions. Although the two functions seem to operate on different addresses, they actually operate on the same memory address.

The code is as follows:

function test($a=0,&$result=array()){
$a++;
if ($a<10) {
    $result[]=$a;
    test($a,$result);
}
echo $a;
return $result;
}

The above example is very simple. Use ad33d43cfe874543b26cf99938f8dbba9 1 [1] => 2 [2] => 3 [3] => 4 [4 ] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 ).

What is more interesting in this example is the value of echo a . I believe many people think it is 12345678910, but actually it is not, it is 1098765432. why? Because the function has performed the next function recursion before executing echo a.

                                                                                                                                                                                             . For the upper layer, after executing the recursive function, the echo $a, of this layer starts to be executed, and so on. Second method: Use global variablesUse global variables to complete recursive functions. Please make sure you understand what global variables are. globalDeclaring variables within a function is nothing but a reference to an external variable with the same name. The scope of the variable is still within the scope of this function. Changing the values ​​of these variables will naturally change the values ​​of external variables with the same name. But once

&

is used, the variable with the same name is no longer a reference with the same name. It is not necessary to understand such a deep level to use global variables to implement recursive functions. You can understand recursive functions naturally by maintaining the original view of global variables. The code is as follows:

function test($a=0,$result=array()){
    global $result;
    $a++;
    if ($a<10) {
        $result[]=$a;
        test($a,$result);
    }
    return $result;
}

The third method: using static variables We often see

static

in classes ,Today we use it in recursive functions. Remember the role of static: initialize the variable only the first time the function is called, and retain the variable value.

:

code is as follows:

function test(){
static $count=0;
echo $count;
$count++;
}
test();
test();
test();
test();
test();
What are the execution results of this code? Is it

00000

? Definitely not. It’s 01234. First, call

test(), static

for the first time to initialize

$count

. After each subsequent execution, the value of $count will be retained and will not be continued. Initialization is equivalent to directly ignoring the sentence static $count=0;. Therefore, the effect of applying static to a recursive function can be imagined. Use static to initialize variables that need to be used as "bridges" between recursive functions. Each recursion will retain the value of the "bridge variable". The code is as follows:

function test($a=0){
    static $result=array();
    $a++;
    if ($a<10) {
        $result[]=$a;
        test($a);
    }
    return $result;
}

Summary The so-called recursive function focuses on how to handle the function call itself and how to ensure that the required results are obtained in the function Reasonable "transfer" between functions, of course, there are also recursive functions that do not need to transfer values ​​between functions, for example:

The code is as follows:

function test($a=0){
    $a++;
    if ($a<10) {
        echo $a;
        test($a);
    }
}

Let's use a piece of code to demonstrate the use of recursive functions in PHP How to add up numbers.

The code is as follows:

The code is as follows:

<?php
function summation ($count) {
   if ($count != 0) :
     return $count + summation($count-1);
   endif;
}
$sum = summation(10);
print "Summation = $sum";
?>

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

PHP实现正则匹配操作的方法

实例详解php中serialize()与unserialize()函数

实例分析一个实用的php验证码类

The above is the detailed content of Three ways to implement recursive functions in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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