In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
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!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.