[PHP-DEV] Re: Bug #15937: Call-time pass-by-reference has been deprecated

2002-03-07 Thread Andrey Hristov
You probably do: $some_len = strlen($some_str); you do not need to use . Probably $some_str is passed by reference without . Best regards, Andrey Hristov On Thursday 07 March 2002 08:22 pm, you wrote: From: [EMAIL PROTECTED] Operating system: SuSE Linux 6.0 PHP version:

[PHP-DEV] Re: Bug #15937: Call-time pass-by-reference has been deprecated

2002-03-07 Thread s.nohn
On Thu, 7 Mar 2002, Andrey Hristov wrote: You probably do: $some_len = strlen($some_str); right. you do not need to use . Probably $some_str is passed by reference without . What do you mean by probably? I mean, the reason for me to use the call-by-reference is the performance... I'm not

Re: [PHP-DEV] Re: Bug #15937: Call-time pass-by-reference has been deprecated

2002-03-07 Thread Markus Fischer
On Thu, Mar 07, 2002 at 08:02:17PM +0100, [EMAIL PROTECTED] wrote : On Thu, 7 Mar 2002, Andrey Hristov wrote: You probably do: $some_len = strlen($some_str); right. you do not need to use . Probably $some_str is passed by reference without . What do you mean by probably? I