Get the App
SLTechnology News&Howtos  ›  Development  › 

Example Analysis of PHP Array passing is value passing rather than reference passing

Shulou Source: shulou.com Published: 2022-06-03 04:55:32 09月11日 Update

Editor to share with you the PHP array transfer is value transfer rather than reference transfer example analysis, I believe that most people do not know much about it, so share this article for your reference, I hope you will learn a lot after reading this article, let's go to know it!

When the function is called, the PHP array is assigned to the parameter as an argument, which is modified in the function, and the array itself is not affected.

Indicates that the pass in this process is value passing, the array variable is not a reference to the array itself, the PHP array itself exists as a value, and the formal parameter is a copy of the array.

This is very different from some other languages (such as c, Js, etc.), and it's worth noting!

The copy code is as follows:

$arr = array (

'name' = >' corn'

'age' = >' 24'

);

Test_arr ($arr)

Function test_arr ($arr) {

$arr ['name'] =' qqyumidi'

}

Print_r ($arr); / / result: Array ([name] = > corn [age] = > 24)

The Js code is as follows:

The copy code is as follows:

Var arr = new Array ('corn',' 24')

Test_arr (arr)

Function test_arr (arr) {

Arr [0] = 'qqyumidi'

}

Console.log (arr); / / result: ["qqyumidi", "24"]

This is all the content of the article "PHP array passing is a sample analysis of value passing rather than reference passing". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Tags: Array code article example analysis content function formal parameter different same not much variable at the same time most form copy point to more knowledge industry Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno macOS NVidia Shulou Information Xiaomi MySQL