PHP 中的对象是按值还是按引用分配的?
在此代码中:
<?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");
}
}
?>
当该方法运行并更改 foo 对象数组中 foo # 5 的值时,数组中的实际 foo # 5 是否会受到影响,或者该变量将只是一个在函数末尾将不再存在的局部变量?Bar::test()
$testFoo