Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a hard time determining what the =& (equals-ampersand) assignment operator does in PHP. Can anyone explain it? Is it deprecated? Thanks!

share|improve this question
I'm sorry, it's =& (equals-ampersand). Example: $this->config =& load_class('Config'); – Kyle J. Dye Nov 20 '09 at 4:30
@Kyle J. Dye: I fixed it for you. – Asaph Nov 20 '09 at 4:32
See also stackoverflow.com/questions/3200009 (marked as duplicate of this) – Artefacto Jul 8 '10 at 10:19

3 Answers

up vote 18 down vote accepted

It's 2 different operators. = is assignment as you probably know. and & means the variable should be accessed by reference rather than by value.

share|improve this answer
31  
I'm sorry but this is way too simplistic. $a =& $b means to make the variable $a refer to the same thing that $b does right now. After this, $a = 5; will also result in $b having a 5. However the reference link may be broken by $b =& $xyz; or unset($b); At which time $a will be the only variable that knows where the cell is that holds the 5. Also beware that if you set $a using =&, you must use =& next time (or unset($a)) to change the reference link of $a, specifically $a = NULL; will not break the link, it only replaces the 5 with null; – Don Apr 7 '10 at 1:51
3  
@Don: Thanks for the elaboration. I can tell you're a C programmer. – Asaph Apr 7 '10 at 3:26
2  
I second what Don says. But I wouldn't say this is way too simplistic. I'd say this is wrong. – Artefacto Aug 21 '10 at 17:11

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 =& (equals ampersand) is the same as = & (equals space ampersand).

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.

share|improve this answer

It's a variable reference, as described here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.