Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to easily fix this issue or do I really need to rewrite all the legacy code?

PHP Fatal error: Call-time pass-by-reference has been removed in ... on line 30

This happens everywhere as variables are passed into functions as references throughout the code.

share|improve this question

1 Answer

up vote 68 down vote accepted

You should be denoting the call by reference in the function definition, not the actual call. Since PHP started showing the deprecation errors in version 5.3, I would say it would be a good idea to rewrite the code.

From the documentation:

There is no reference sign on a function call - only on function definitions. Function definitions alone are enough to correctly pass the argument by reference. As of PHP 5.3.0, you will get a warning saying that "call-time pass-by-reference" is deprecated when you use & in foo(&$a);.

For example, use:

// Right way!
function myFunc(&$arg) { }
myFunc($var);

Rather than:

// Wrong way!
function myFunc($arg) { }
myFunc(&$arg);
share|improve this answer
2  
Too bad :( - I'm porting from 5.2 to 5.4 and this is really annoying... – bardiir Jan 23 '12 at 12:40
1  
Deprecation is since PHP 5.0.0, back that time giving E_COMPILE_WARNING level error, for reference: php.net/manual/en/… – hakre Jun 28 '12 at 22:20
1  
I had this error but needed to remove the & insted of adding to the variable. – Diana Feb 26 at 0:47

protected by Community Oct 3 '12 at 0:52

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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