Are both these PHP statements doing the same thing?:
$o =& $thing;
$o = &$thing;
|
Are both these PHP statements doing the same thing?:
|
||||
|
|
|
Yes, they are both the exact same thing. They just take the reference of the object and reference it within the variable $o. Please note, |
|||
|
|
|
They both give an expected T_PAAMAYIM_NEKUDOTAYIM error. If you meant
|
|||
|
|
|
If you meant |
|||
|
|
|
Yes, they do. |
|||||||
|
|
They're not the same thing, syntactically speaking. The operator is the atomic =& and this actually matters. For instance you can't use the =& operator in a ternary expression. Neither of the following are valid syntax:
So instead you would use this:
|
|||
|
|