vote up 1 vote down star

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, not by reference? (That feels strange to type. I feel like I'm losing my mind.)

flag

25% accept rate

3 Answers

vote up 4 vote down check

It was one of those sort of optimization techniques taught in a lot of older books on OOP in PHP 4.

Basically, the initial object created in memory is one the application can't access unless you return the instance by reference. Otherwise you get a copy of the object - the only catch is that the original exists without a symbol. Kinda dumb.

But ya, object creating and passing and references in PHP 4 is a monumental mess.

link|flag
vote up 3 vote down

Thats PHP4 code. From the documentation:

"new" does not return a reference by default, instead it returns a copy.

link|flag
I got a -1 for this correct answer? – OIS Dec 8 '08 at 22:48
vote up 0 vote down

See also my answer here which includes a simple code sample to illustrate the issue.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.