Possible Duplicate:
Reference assignment operator in php =&
I saw this example:
function __construct() {
$this->ci =& get_instance();
}
What does the =& mean? Is it the same as "set" or something else?
Possible Duplicate:
Reference assignment operator in php =&
I saw this example:
function __construct() {
$this->ci =& get_instance();
}
What does the =& mean? Is it the same as "set" or something else?
It's to assign the value returned by the function as a reference.