Home > Backend Development > PHP Tutorial > 关于引用变量的疑惑

关于引用变量的疑惑

WBOY
Release: 2016-06-23 14:16:17
Original
1080 people have browsed it

$foo='Bob';
$bar=&$foo;
$bar="my name is $bar";
echo $bar.'
';
echo $foo;

这是手册上的一个例子,我有疑惑的就是输出$bar的结果我能理解,但是为何输出$foo的时候,他的值不是Bob,而是my name is Bob,为何其值会变,请高手解释,谢谢!


回复讨论(解决方案)

这就是赋值和引用的区别
$foo='Bob';
$bar=&$foo; //$bar 和 $foo 指向了同一个变量表项
所以对 $bar 的任何改变,都会引起 $foo 的改变(除了删除)

就好比一个人有两个名字一样

这就是赋值和引用的区别
$foo='Bob';
$bar=&$foo; //$bar 和 $foo 指向了同一个变量表项
所以对 $bar 的任何改变,都会引起 $foo 的改变(除了删除)

就好比一个人有两个名字一样
也就是一旦引用,两个变量都一样了,是吧?

是的,两个变量的值都一样了

是的,两个变量的值都一样了
谢谢!

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