Example:
$this->sql =& new GuestBook_SQL;
What does it do?
|
feedback
|
|
This operator is assigning reference. Here's the explenation from PHP manual | |||
|
feedback
|
|
And it's old. You don't need that syntax anymore in PHP5. It assigns new objects by reference anyway. | |||
|
feedback
|