Example:

$this->sql =& new GuestBook_SQL;

What does it do?

link|improve this question

79% accept rate
feedback

3 Answers

up vote 9 down vote accepted

This operator is assigning reference. Here's the explenation from PHP manual

link|improve this answer
feedback

It assigns by reference, instead of by value.

link|improve this answer
feedback

And it's old. You don't need that syntax anymore in PHP5. It assigns new objects by reference anyway.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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