$el = array_shift($instance->find(..))
The above code somehow reports the strict standars warning,but this will not:
function get_arr(){
return array(1,2);
}
$el = array_shift(get_arr());
So when will it report the warning anyway?
|
|
Consider the following code:
This will generate the following output:
The reason? The To get around this error in strict mode either change the signature of the method so it doesn't use a reference:
Since you can't change the signature of
Sucks, doesn't it? I don't have an explanation, as I can't read the minds of the PHP internals team and those guys seem to exists on their own wavelength. |
|||||||||||
|
|
You get the report when you are trying to use this reference as an argument to function, without storing it at variable first. This helps preventing memory leaks, and will probably become error in next PHP versions. Your 2nd code would throw error if it wrote like (note the & in function signature):
So a quick (and not so nice) fix would be:
Basically you do an assignment to temporary variable first, and send the variable as an argument. |
|||||||||||
|
|
The second snippet doesn't work either and that's why. |
|||
|
|