Home Daily Programming PHP Knowledge PHP recursive algorithm (3)

PHP recursive algorithm (3)

Mar 05, 2019 pm 02:33 PM
php recursive algorithm

In "PHP Recursive Algorithm (1)" and "PHP Recursive Algorithm (2)", we introduced how to use static variables and global variables respectively. Implement recursive algorithms. In this article, we will continue to explain how to achieve this through referencing and passing parameters.

PHP recursive algorithm (3)

Below we will introduce specific code examples to introduce the recursive algorithm through passing parameters by reference.

The code example is as follows:

<?php
function test($a=0,&$result=array()){
    $a++;
    if ($a<10){
        $result[]=$a;
        test($a,$result);
    }
    echo $a."<hr>";
    return $result;
}
var_dump(test());
Copy after login

Output $a:

PHP recursive algorithm (3)

##Output $result:

PHP recursive algorithm (3)

The reference of php is simply to add the & symbol (that is, the reference symbol) in front of the variable, function, object, etc. Here you need to understand the concept of PHP reference transfer, that is, you can pass a variable by reference Passed to a function so that the function can modify the value of its argument.

Quotation in PHP means that different names access the same variable content. Here we add an & symbol before $result, and finally output the $result result as shown in the figure above. In subsequent articles, we will use xdebug to demonstrate the implementation process of this method.

This article is an introduction to the method of implementing recursive algorithms through PHP reference parameter passing. It is simple and easy to understand. I hope it will be helpful to friends in need!


The above is the detailed content of PHP recursive algorithm (3). For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)