=& operator in PHP

operators, php

Solution

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

Problem

Example: $this->sql =& new GuestBook_SQL; What does it do?

Original source