In PHP, value passing means copying the actual parameters when calling a function and then passing them to the formal parameters of the function. In fact, the formal parameters and actual parameters occupy different storage units respectively. The characteristic of value transfer is one-way transfer, that is, when the calling function is called, a storage unit is allocated to the formal parameter, and the value of the actual parameter is passed to the formal parameter. After the call is completed, the storage unit of the formal parameter is released, and the value of the formal parameter is Any changes will not affect the value of the actual parameter, and the storage unit of the actual parameter still retains and maintains its value unchanged.

The operating environment of this tutorial: windows7 system, PHP8 version, DELL G3 computer
When calling a function, parameters need to be passed to the function. The parameters passed into the function are called actual parameters, while 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.
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.
The characteristic of value transfer is one-way transfer, that is, when the calling function is called, a storage unit is allocated to the formal parameter, and the value of the actual parameter is transferred to the formal parameter. After the call is completed, the formal parameter is stored The unit is released, and any change in the formal parameter value will not affect the value of the actual parameter. The storage unit of the actual parameter still retains and maintains the value unchanged.
[Example] Define a simple function below. The function has two parameters, and the values of the parameters are exchanged in the function.
<?php
function swap($a, $b){
echo '函数内,交换前 $a = '.$a.', $b = '.$b.'<br>';
$temp = $a;
$a = $b;
$b = $temp;
echo '函数内,交换后 $a = '.$a.', $b = '.$b.'<br>';
}
$x = 5;
$y = 7;
echo '函数外,交换前 $x = '.$x.', $y = '.$y.'<br>';
swap($x, $y);
echo '函数外,交换后 $x = '.$x.', $y = '.$y;
?>The running results are as follows:

#It can be seen from the running results that within the function, the values are indeed exchanged, but outside the function, the values are not no 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.
Passing by reference
Passing by reference is to copy the memory address of the actual parameter and then pass it to the formal parameter of the function. Both parameters and formal parameters 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) {
...
}[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 '函数内,交换前 $a = '.$a.', $b = '.$b.'<br>';
$temp = $a;
$a = $b;
$b = $temp;
echo '函数内,交换后 $a = '.$a.', $b = '.$b.'<br>';
}
$x = 5;
$y = 7;
echo '函数外,交换前 $x = '.$x.', $y = '.$y.'<br>';
swap($x, $y);
echo '函数外,交换后 $x = '.$x.', $y = '.$y;
?>The running results are as follows:
The difference between php value passing and reference passing
Value transfer: within the scope of the function, changing the value of the variable will not affect the value of the variable outside the function.
Passing by reference: Within the function scope, any changes to the value are also reflected outside the function, because the memory address is passed by reference.
Type two pieces of code and you can see the difference between the two. Let’s look at the essence through the phenomenon
function sum($a){
$a++;
$b = $a;
return $b;
}
$a = 10;
echo sum($a).'<br />';//11
echo $a;//10function sum(&$a){
$a++;
$b = $a;
return $b;
}
$a = 10;
echo sum($a).'<br />';//11
echo $a;//11The difference between the two pieces of code lies in the parameters of the function sum. One is to pass the value $ a, and the other is passing reference &$a. The result is that the value of $a does not change after passing the value. On the contrary, the value of $a changes after passing the reference. Children who have learned C language here will understand what is going on. What is pushed on the stack is a copy of the reference.
Since the reference points to a certain variable, the operation on the reference is actually the operation on the variable it points to. (The function is the same as passing a pointer, except that there is no need to dereference) & is a symbol pointing to the address of a variable. The formal parameter &$a in the function sum is actually the actual parameter $a, so it is passed into sum for an operation. After that, the value of the actual parameter $a actually changes, that's all.
Explanation:
The value of the original parameter in pass by value remains the original value after calling other functions, while pass by reference changes the original value. When passing values according to the method of passing by value, if the original value needs to be changed, the code needs to be copied. If the value is large enough or it is a large string of strings, the code will be more and more repetitive, while passing by reference will There is no need to copy PHP code, which has a great advantage in improving performance.
For more PHP related knowledge, please visit php中文网!
The above is the detailed content of What does value passing mean in php. For more information, please follow other related articles on the PHP Chinese website!
ACID vs BASE Database: Differences and when to use each.Mar 26, 2025 pm 04:19 PMThe article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and
PHP Secure File Uploads: Preventing file-related vulnerabilities.Mar 26, 2025 pm 04:18 PMThe article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.
PHP Input Validation: Best practices.Mar 26, 2025 pm 04:17 PMArticle discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.
PHP API Rate Limiting: Implementation strategies.Mar 26, 2025 pm 04:16 PMThe article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand
PHP Password Hashing: password_hash and password_verify.Mar 26, 2025 pm 04:15 PMThe article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur
OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.Mar 26, 2025 pm 04:13 PMThe article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.
PHP XSS Prevention: How to protect against XSS.Mar 26, 2025 pm 04:12 PMThe article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.
PHP Interface vs Abstract Class: When to use each.Mar 26, 2025 pm 04:11 PMThe article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool






