确定 PHP 中的对象分配
在 PHP 编程中,可以通过值或引用来分配对象。这种区别会影响对对象所做的更改如何反映在代码的其他部分。
让我们考虑以下代码:
<code class="php">class Foo { var $value; function foo($value) { $this->setValue($value); } function setValue($value) { $this->value = $value; } } class Bar { var $foos = array(); function Bar() { for ($x = 1; $x <= 10; $x++) { $this->foos[$x] = new Foo("Foo # $x"); } } function getFoo($index) { return $this->foos[$index]; } function test() { $testFoo = $this->getFoo(5); $testFoo->setValue("My value has now changed"); } }</code>
问题出现:当“Bar::test( )”方法执行后,修改“Foo”对象数组中的“foo # 5”会影响实际的“foo # 5”对象本身还是创建一个单独的局部变量“testFoo”?
答案:
为了确定答案,我们可以执行代码并观察输出:
<code class="php">$b = new Bar; echo $b->getFoo(5)->value; $b->test(); echo $b->getFoo(5)->value;</code>
上述代码的输出预计为:
Foo #5 My value has now changed
这表明对“testFoo”对象所做的更改会影响数组中实际的“foo # 5”对象。此行为归因于 PHP 5 中“按引用赋值”的概念,该概念默认应用于对象。
含义:
按引用赋值可确保后续操作对对象的更改会反映在整个代码中。但是,如果您希望创建对象的独立副本,则可以使用“clone”关键字来执行基于值的赋值。
以上是引用赋值会影响 PHP 中的对象修改吗?的详细内容。更多信息请关注PHP中文网其他相关文章!