我对如何使用 & 运算符来减少记忆感到非常困惑。
我可以回答下面的问题吗?
clase C{
function B(&$a){
$this->a = &$a;
$this->a = $a;
//They are the same here created new variable $this->a??
// Or only $this->a = $a will create new variable?
}
}
$a = 1;
C = new C;
C->B($a)
或者也许我的理解完全错误......