似乎在 PHP 中对象是通过引用传递的。甚至赋值运算符似乎也没有创建对象的副本。
这是一个简单的、人为的证明:
<?php
class A {
public $b;
}
function set_b($obj) { $obj->b = "after"; }
$a = new A();
$a->b = "before";
$c = $a; //i would especially expect this to create a copy.
set_b($a);
print $a->b; //i would expect this to show 'before'
print $c->b; //i would ESPECIALLY expect this to show 'before'
?>
在这两种印刷情况下,我都在“追求”
那么,如何通过值而不是引用将$a传递给set_b() ?