vote up 0 vote down star
function get_arr($arr)
{
    unset($arr[0]);
}
$arr1 = array(1,2);
$arr2 = array(1,2);

get_arr(&$arr1);
get_arr($arr2);
echo count($arr1);
echo count($arr2);

I got :

Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of get_arr(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file

But the output is:

12

Which means the call time reference takes effect.

Why the two places output contradictary messages?

flag

40% accept rate
I think get_arr(&$arr1); provide your function not array but string "1"; – ARTstudio Oct 29 at 9:12
@ARTstudio: What makes you think that? get_arr(&$arr1) passes $arr1 (an array) by reference to get_arr(). – Ferdinand Beyer Oct 29 at 9:25

4 Answers

vote up 3 vote down check

Deprecated does not mean non-functional, it's just not recommended.

link|flag
vote up 0 vote down

the source of confusion is that error message is vague, it should read "to get rid of this warning, set allow_call_time_pass_reference to true" instead of "to enable call-time pass-by-reference".

link|flag
vote up 0 vote down

Call-time pass-by-reference is deprecated, that means it should not be used any more and may not be working in a future version of PHP. It does not mean that it does not work.

link|flag
vote up 0 vote down

It's a warning.

It is just warning you, but at the same time trusts that you know what you are doing.

link|flag

Your Answer

Get an OpenID
or

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