I know $a =& $b
assigns $a
as a reference to $b
and I already read some answers about it, but no one provides a real useful example usage includes: What do the "=&" and "&=" operators in PHP mean?
Could any one provide a minimal example to show how =&
could be useful in PHP? Why might somebody want to have two names for a single variable?