I'm trying to reduce the warnings that are sent to my apache server log.

One warning is:

Call-time pass-by-reference has been deprecated.

It is hard for me to imagine why this was deprecated since it is such a useful programming feature, basically I do this:

public function takeScriptsWithMarker(&$lines, $marker) {

    ...
}

and I call this function repeatedly getting results back from it and processing them but also letting the array $lines build up by being sent into this method repeatedly.

  1. To reprogram this would be extensive.
  2. I don't want to just "turn off warnings" since I want to see other warnings.

So, as call-by-reference is deprecated, what is the "accepted way" to attain the functionality of this pattern: namely of sending an array of strings into a method, have them be changed by the method, then continuing to use that array?

link|improve this question

80% accept rate
feedback

5 Answers

up vote 37 down vote accepted

Actually, there's no problem with the way you define the function. Is a problem with the way you call the function. So for your example, instead of calling it like:

takeScriptsWithMarker(&$lines, $marker);

You'd call it like:

takeScriptsWithMarker($lines, $marker); // no ampersands :)

So the feature is still available. But I don't know the reason behind this change.

link|improve this answer
that simple change worked nicely, thanks – Edward Tanguay Jun 28 '09 at 21:37
10  
"I don't know the reason behind this change.". Long story short, the function is in charge of deciding what is passed by reference, not the caller. When the caller can pass any arbitrary argument by reference, that may result in side effects that the function's author wasn't prepared for. – Frank Farmer Jun 28 '09 at 22:22
6  
From the docs for allow_call_time_pass_reference: "Passing arguments by reference at function call time was deprecated for code cleanliness reason. Function can modify its argument in undocumented way if it didn't declared that the argument is passed by reference. To prevent side-effects it's better to specify which arguments are passed by reference in function declaration only." – Frank Farmer Jun 28 '09 at 22:24
1  
@Frank, thanks for the clarifications. The bad part is that, just looking at a function call, you have no idea that any of those arguments may be passed by reference. So, you may get side effects in the function without knowing it. A requirement to have ampersands both in function definition and function call would have been much better in my opinion. – IonuČ› G. Stan Jun 28 '09 at 23:17
1  
@Ionut: wouldn't just looking at the function's signature be enough to remove the doubt? If you don't have the source code or documentation, you have worse problems than duplicating &, IMHO – Adriano Varoli Piazza Jul 6 '09 at 20:50
show 1 more comment
feedback

like noted above in a previous answer, the issue is at CALL time, not definition time.. so you could define a function as:

function foo(&$var1,$var2,$var3=null){
    // procesing here
}

then call as:

$return = foo($invar1,$invar2);

your first invar is passed by reference, second one is not.

the error appears when you try to call like so:

$return = foo(&$invar1,$invar2);
link|improve this answer
feedback

You can set allow_call_time_pass_reference to true in your php.ini file. But it's a hack.

link|improve this answer
feedback

You could pass an array with a reference in:

public function takeScriptsWithMarker(array(&$lines, $marker))

which should only take a small amount of refactoring at the other end.

link|improve this answer
feedback

You could pass in the array, let it manipulate it, and then "return" it, instead of messing with the original reference. It shouldn't be too hard to just include a return and assignment.

public function takeScriptsWithMarker($lines, $marker) {
    //...
    return $lines;
}

Usage:

$lines = takeScriptsWithMarker($lines, $marker);
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.