&operatorを使用してメモリを削減する方法について非常に混乱しています。
以下の質問に答えてもらえますか?
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)
または多分私の理解は完全に間違っています.....