Read Do Not Use PHP Links by PHP Expert Johannes Schluter
PHP links are a respite from PHP 4, where objects were passed by value, not by reference, unless you specifically made them by reference. This is not necessary when using PHP 5, because all objects are passed by reference to PHP 5 all the time.
Scalars and arrays are passed by default to PHP 5 by default. If you need to pass them by reference, you just need to use the object.
source
share