i wonder where i should put the & properly.
$b =& $a; or $b = &$a;
Both reference the same thing, just a matter of coding style.
Personally, I prefer the $b = &$a style for readability, the space from the & and $ throws me off.
$b = &$a
&
$