I am having a hard time determining what the =& (equals-ampersand) assignment operator does in PHP. Can anyone explain it? Is it deprecated? Thanks!
|
|
It's 2 different operators. |
|||||||||||||
|
|
To answer the other part of Kyle's question - it's not deprecitated and is unlikely to be. It's the standard way to, for example, make part of one array or object mirror changes made to another. Since it's hard to search, it's worth adding that Also because it's hard to search on, it's worth adding that it's called "Assign by Reference". Here's a handy link to a section on Assign By Reference in the php manual. That page is part of a series on references - it's worth taking a minute to read the whole series. |
||||
|
|
|
It's a variable reference, as described here. |
|||
|
|