Example:
$this->sql =& new GuestB开发者_开发技巧ook_SQL;
What does it do?
This operator is assigning reference. Here's the explenation from PHP manual
It assigns by reference, instead of by value.
And it's old. You don't need that syntax anymore in PHP5. It assigns new objects by reference anyway.
精彩评论