January 9, 2010

Ugly fix for ‘Deprecated: Assigning the return value of new by reference is deprecated’

In PHP5 this idiom is deprecated
$obj_ses =& new SESSION();
if it generate the warning,  removed the ampersand (&) .

Filed under Tips & Tricks