up vote 0 down vote favorite
share [g+] share [fb]
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?

link|improve this question

42% accept rate
I think get_arr(&$arr1); provide your function not array but string "1"; – Arthur Halma Oct 29 '09 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 '09 at 9:25
feedback

4 Answers

up vote 3 down vote accepted

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

link|improve this answer
1  
Not recommended and also they will be removing that functionality in later versions of PHP. So get ready for a lot of code to break when they do. – Clutch Nov 16 '10 at 18:04
@Clutch: of course before upgrading to a new version of PHP you should always check the incompatible changes – user102008 Sep 1 '11 at 22:55
feedback

It's a warning.

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

link|improve this answer
feedback

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|improve this answer
feedback

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|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.