Since objects are passed by reference by default now, is there maybe some special case when &$obj
would make sense?
Is there ever a need to use ampersand in front of an object?
3.4k Views Asked by LDusan At
2
There are 2 best solutions below
0

There are situations where you add & in front of function name, to return any value as a reference.
To call those function we need to add & in front of object.
If we add & in front of object, then it will return value as reference otherwise it will only return a copy of that variable.
class Fruit() {
protected $intOrderNum = 10;
public function &getOrderNum() {
return $this->intOrderNum;
}
}
class Fruitbox() {
public function TestFruit() {
$objFruit = new Fruit();
echo "Check fruit order num : " . $objFruit->getOrderNum(); // 10
$intOrderNumber = $objFruit->getOrderNum();
$intOrderNumber++;
echo "Check fruit order num : " . $objFruit->getOrderNum(); // 10
$intOrderNumber = &$objFruit->getOrderNum();
$intOrderNumber++;
echo "Check fruit order num : " . $objFruit->getOrderNum(); // 11
}
}
Objects use a different reference mechanism.
&$object
is more a reference of a reference. You can't really compare them both. See Objects and references:&$object
is something else than$object
. I'll give you an example:I won't answer the question if it makes sense, or if there is a need. These are opinion based questions. You can definitely live without the
&
reference on objects, as you could without objects at all. The existence of two mechanisms is a consequence of PHP's backward compatibility.