1
vote
3answers
321 views
PHP new operator returning reference
I'm working with some old PHP code that has a lot of the following:
$someVar =& new SomeClass();
Did the new operator ever return a value, um, …
