php5 值赋值与引述赋值

WBOY
Release: 2016-06-13 11:03:13
Original
863 people have browsed it

php5 值赋值与引用赋值
值赋值——2个变量有各自的内存,互不影响

$str1 = "wang";$str2 = $str1;$str1 = "zhang";echo $str2; // wang
Copy after login


引用赋值——用“&”,2个变量共用一个内存,一个变化,另一个也变化。

$i = "zhao";$j = "wang";$j = &$i;echo $j; // zhao$j = "hello,$j";echo $j; //hello,zhaoecho "<br/>";echo $i; //hello,zhao
Copy after login


需要注意的是只有命名变量才可以传地址赋值,这一点非常重要。

<?php$foo = 25;$bar = &$foo;      // This is a valid assignment.$bar = &(24 * 7);  // Invalid; references an unnamed expression.function test(){   return 25;}$bar = &test();    // Invalid.?>  
Copy after login


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