PHP对象分配与克隆

我知道这在PHP文档中被覆盖,但是我对这个问题感到困惑.

PHP文档:

$instance = new SimpleClass();
$assigned   =  $instance;
$reference  =& $instance;
$instance->var = '$assigned will have this value';
$instance = null; // $instance and $reference become null
var_dump($instance);
var_dump($reference);
var_dump($assigned);
?>

上面的例子将输出

NULL
NULL
object(SimpleClass)#1 (1) {
["var"]=>
 string(30) "$assigned will have this value"
}

好的,所以我看到$assign’survived’原始对象($instance)分配给NULL,所以显然$assign不是引用,而是$instance的副本.
那么有什么区别呢?

$assigned = $instance

$assigned = clone $instance
对象是内存中的抽象数据.一个变量总是保存在内存中的这个数据的引用.想象一下,$foo = new Bar在内存中的某个位置创建一个Bar的对象实例,为其分配一些id#42,而$foo现在将此#42作为此对象的引用.通过引用将此引用分配给其他变量,或者通常与任何其他值相同.许多变量可以持有一个副本,如果这个引用,但都指向同一个对象.

克隆显式创建对象本身的副本,而不仅仅是指向对象的引用.

$foo = new Bar;   // $foo holds a reference to an instance of Bar
$bar = $foo;      // $bar holds a copy of the reference to the instance of Bar
$baz =& $foo;     // $baz references the same reference to the instance of Bar as $foo

只要不要混淆“参考”,就像=&与对象标识符中的“引用”.

$blarg = clone $foo;  // the instance of Bar that $foo referenced was copied
                      // into a new instance of Bar and $blarg now holds a reference
                      // to that new instance

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...