I\'m getting mixed signals all over the place.
Do I use the ampersand to pass variables by reference or not?
The following link seems to tell me that it is depre
No, those are not the same. PHP 5.4+ just detects on call whether reference is needed when the function is called by checking the declaration.
So no, not deprecated since you need the reference operator in the function declaration if that is your intended usage.