Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I realize this is a very basic question but I don't even really know what to search for to find out about it.

$smarty =& SESmarty::getInstance();

What is the & for in the above?

share|improve this question
1  
If you need something like this in the future search for "operators" in the PHP help references, or a good search engine. – Mark Cooper Jan 17 '10 at 18:06
You should also look up something called "Singleton". – cwallenpoole Jan 17 '10 at 19:18

3 Answers

up vote 16 down vote accepted

It passes by reference. Meaning that it won't create a copy of the value passed.

See: http://php.net/manual/en/language.references.php (See Adam's Answer)

Usually, if you pass something like this:

$a = 5;
$b = $a;
$b = 3;

echo $a; // 5
echo $b; // 3

The original variable ($a) won't be modified if you change the second variable ($b) . If you pass by reference:

$a = 5;
$b =& $a;
$b = 3;

echo $a; // 3
echo $b; // 3

The original is changed as well.

Which is useless when passing around objects, because they will be passed by reference by default.

share|improve this answer
In addition to what Chacha102 said, from the manual: > References in PHP are a means to access the same variable content by different names. The manual section is at php.net/manual/en/language.references.php – adam Jan 17 '10 at 17:09
4  
PHP5 objects are not passed by reference by default: rather, an object identifier is passed by value (similar to Java's 'reference' semantics); see the manual for details: php.net/manual/en/language.oop5.references.php – Christoph Jan 17 '10 at 17:18
Thanks, seems kind of pointless to me right now – jasondavis Jan 17 '10 at 17:21
It really is kind of pointless. The main reason people used them was to not require a function to return a variable, but instead just have to modify the variable. – Chacha102 Jan 17 '10 at 17:28
1  
@Chacha102 and @jasondavis References are ABSOLUTELY not pointless. They are invaluable. Perhaps they are not always useful when working with primitives, but they are incredibly useful when working with ANY OOP -- including basic arrays. – cwallenpoole Jan 17 '10 at 19:09
show 2 more comments

In PHP4, it kind of (awkwardly) associated two variables.

$j = 'original';
$i =& $j;
$i = 'modified';
echo $j; // output is 'modified'

Likewise...

$j = 'original';
$i =& $j;
$j = 'modified';
echo $i; // output is 'modified'

Some of this was made a little less unpleasant when it comes to objects in PHP5, but I think the heart of it is the same, so these examples should still be valid.

share|improve this answer

References are used to alias variables and were necessary to use the old object system efficiently.

In PHP4, objects behaved like any other value type, ie assignment would create a copy of the object. If you wanted to avoid this, you had to use a reference as in your example code.

With PHP5, object variables no longer contain the object itself, but a handle (aka object identifier) and assignment will only copy the handle. Using a reference is no longer necessary.

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.