What are the ways to pass parameters to functions in php?

青灯夜游
Release: 2023-03-11 17:56:01
Original
8644 people have browsed it

Methods for passing parameters by PHP functions: 1. Pass by value, copy the value of the actual parameter and then pass it to the formal parameter of the function; 2. Pass by reference, copy the memory address of the actual parameter and pass it For formal parameters of the function; 3. Default parameters, specify a default value for one or more formal parameters of the function; 4. Variable length parameters, which will be passed to the function as an array.

What are the ways to pass parameters to functions in php?

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

When calling a function, you need to pass parameters to the function , the parameters passed into the function are called actual parameters, and the parameters defined by the function are called formal parameters. There are four ways to pass parameters to a function, namely passing by value, passing by reference, default parameters and variable length parameters.

1. Value passing

Value passing is the default value passing method for functions in PHP, also known as "copy passing by value". As the name suggests, the value passing method will copy the value of the actual parameter and then pass it to the formal parameter of the function, so operating the value of the parameter in the function will not affect the actual parameters outside the function. Therefore, if you do not want the function to modify the value of the actual parameter, you can pass it by value.

[Example] The following defines a simple function. The function has two parameters, and the values ​​of the parameters are exchanged in the function.

<?php
    function swap($a, $b){
        echo &#39;函数内,交换前 $a = &#39;.$a.&#39;, $b = &#39;.$b.&#39;<br>&#39;;
        $temp = $a;
        $a = $b;
        $b = $temp;
        echo &#39;函数内,交换后 $a = &#39;.$a.&#39;, $b = &#39;.$b.&#39;<br>&#39;;
    }
    $x = 5;
    $y = 7;
    echo &#39;函数外,交换前 $x = &#39;.$x.&#39;, $y = &#39;.$y.&#39;<br>&#39;;
    swap($x, $y);
    echo &#39;函数外,交换后 $x = &#39;.$x.&#39;, $y = &#39;.$y;
?>
Copy after login

The running results are as follows:

函数外,交换前 $x = 5, $y = 7
函数内,交换前 $a = 5, $b = 7
函数内,交换后 $a = 7, $b = 5
函数外,交换后 $x = 5, $y = 7
Copy after login

It can be seen from the running results that the values ​​​​are indeed exchanged within the function, but outside the function, the values ​​​​do not change. So we can say that passing a function by value is just passing a copy of the variable. So if you want the function to be able to operate on external parameters of the function, you need to use reference passing.

2. Passing by reference

Passing by reference is to copy the memory address of the actual parameter and then pass it to the formal parameter, actual parameter and formal parameter of the function. They all point to the same memory address, so the function's operation on the formal parameters will affect the actual parameters outside the function.

Passing by reference is to pass the memory address of the actual parameter to the formal parameter of the function. Therefore, the actual parameters and formal parameters point to the same memory address. At this time, all operations inside the function will affect the values ​​of the actual parameters outside the function. The method of passing by reference is to add an & symbol on the basis of value passing, as shown below:

function name (&参数1, &参数2, ..., &参数3) {
    ...    
}
Copy after login

[Example] Slightly adjust the code of the above example and use the method of passing by reference to pass to the swap function. Parameters, the code is as follows:

<?php
    function swap(&$a, &$b){
        echo &#39;函数内,交换前 $a = &#39;.$a.&#39;, $b = &#39;.$b.&#39;<br>&#39;;
        $temp = $a;
        $a = $b;
        $b = $temp;
        echo &#39;函数内,交换后 $a = &#39;.$a.&#39;, $b = &#39;.$b.&#39;<br>&#39;;
    }
    $x = 5;
    $y = 7;
    echo &#39;函数外,交换前 $x = &#39;.$x.&#39;, $y = &#39;.$y.&#39;<br>&#39;;
    swap($x, $y);
    echo &#39;函数外,交换后 $x = &#39;.$x.&#39;, $y = &#39;.$y;
?>
Copy after login

The running result is as follows:

函数外,交换前 $x = 5, $y = 7
函数内,交换前 $a = 5, $b = 7
函数内,交换后 $a = 7, $b = 5
函数外,交换后 $x = 7, $y = 5
Copy after login

3. Default parameters

The default parameter is a certain or Multiple formal parameters specify a default value. If the corresponding value is not passed in when calling the function, the function will use this default value. This can avoid errors when calling without parameters, and can also make some programs more reasonable. If the corresponding parameters are passed in, this default value will be replaced.

The default parameters of the function are as follows:

function name ($str = &#39;PHP中文网&#39;, $url) {
    echo $str;  
}
Copy after login

Among them, the "PHP Chinese Network" after the formal parameter $str is its default value, and the = connection needs to be used between the formal parameters and the default values. .

[Example] Let’s define a function with default parameters as follows:

<?php
    function add($a, $b=56){
        echo $a.&#39; + &#39;.$b.&#39; = &#39;.($a+$b).&#39;<br>&#39;;
    }
    add(11);
    add(37, 29);
?>
Copy after login

The running result is as follows:

11 + 56 = 67
37 + 29 = 66
Copy after login

The default parameters can also be multiple, and The default parameter must be placed to the right of the non-default parameter, and the value of the specified default parameter must be a specific value, such as a number or a string, rather than a variable.

[Example] Let’s define a function with multiple default parameters as follows:

<?php
    function add($a, $b=33, $c=57){
        echo $a.&#39; + &#39;.$b.&#39; + &#39;.$c.&#39; = &#39;.($a+$b+$c).&#39;<br>&#39;;
    }
    add(11);
    add(31, 22);
    add(64, 9, 7);
?>
Copy after login

The running result is as follows:

11 + 33 + 57 = 101
31 + 22 + 57 = 110
64 + 9 + 7 = 80
Copy after login

4. Variable Length parameter

In PHP 5.6 and later versions, the formal parameters of the function can use... to indicate that the function can accept a variable number of parameters, and the variable parameters will be passed as an array Give function. An example is as follows:

<?php
    function test(...$arr){
        print_r($arr);
    }
    echo &#39;<pre class="brush:php;toolbar:false">&#39;;
    test(1, 2, 3, 4);
    test(5, 6, 7, 8, 9, 10);
?>
Copy after login

The running results are as follows:

Array
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
)
Array
(
    [0] => 5
    [1] => 6
    [2] => 7
    [3] => 8
    [4] => 9
    [5] => 10
)
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of What are the ways to pass parameters to functions in php?. For more information, please follow other related articles on the PHP Chinese website!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!