Finding the answer to this is turning out to be much more difficult than I would have thought. Since I don\'t have a clue what you\'d call this, it\'s hard to run a Google s
'&=' and '=&' are very different operators.
'&=' is a bitwise assignment operator:
$var = false;
$var &= foo(); // will call foo()
$var = false & foo(); // will call foo()
$var = $var && foo(); // will not call foo()
'=&' returns a reference:
$a = $b; //$a points to $b
$a =& $b; //$a does NOT point to $b... both point to the same thing.