My site has a deprecated error at this line:

$obj =& new $class($table,$primkeyArr,$this);

it is because of &. It gives this error:

Deprecated: Assigning the return value of new by reference is deprecated in ....

It is a issue in php 5.3.

If I remove the & from this line, the error does away. But I don't know if it causes any problem if I put my site on a server with lower PHP version (5.2) or not.

Will removing the & work ok both in PHP 5.2 and in PHP 5.3?

link|improve this question

71% accept rate
1  
"Will removing the & work ok both in PHP 5.2 and in PHP 5.3?" Yes. – vascowhite Jul 16 '11 at 10:41
possible duplicate of PHP 5.3 and assigning the return value of new by reference – NikiC Jul 16 '11 at 10:48
feedback

3 Answers

up vote 4 down vote accepted

In PHP 5, objects are handled in a reference-like manner by default. So removing the & probably won't change anything.

But as assigning by reference breaks old references, there might still be a difference.

link|improve this answer
feedback

It's not deprecated to return a reference but to not reflect that in your functions oder methods signature. There has to be an & before the name as well as when assigning the returned value.

public function &getValue() 
{
  return $this->value;
}

...

$myValue = &$obj->getValue();

The manual will tell you more.

link|improve this answer
feedback

http://php.net/manual/en/language.references.pass.php

It's a mere warning. You don't really need it, but the short answer is that it will only throw warnings. Depending on the level of error_handling in your php config will depend on if you see it on other 5.3 systems.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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