Thought as much after some head scratching,
Thanks
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Not possible, but workaround is to pass the variable name and use it as
> a variable variable, but for this the variable needs to be global.
>
Not possible, but workaround is to pass the variable name and use it as
a variable variable, but for this the variable needs to be global.
Trevor Dowling wrote:
>Can anyone help with this?
>
>I am relativly new to PHP and am trying to use variable numbers of
>parameters to functions using the f
On Thu, 27 Dec 2001, Kancha . wrote:
> I coulnd't figure out the difference between the two:
>
> function &foo(){
> $x = "hello";
> return $x;
> }
>
> and
>
> function foo(){
> $x = "hello";
> return &$x;
> }
return &$x will give you a parser error.
Andi
--
PHP General Mailing Li
lt;[EMAIL PROTECTED]>
To: "Yasuo Ohgaki" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, March 30, 2001 6:51 PM
Subject: RE: [PHP] Passing by reference deprecated?
> I'm surprised. I would have thought that it would have been the other way
> around. Passing by
7;d be interested to hear of other
peoples views.
-Original Message-
From: Yasuo Ohgaki [mailto:[EMAIL PROTECTED]]
Sent: 30 March 2001 10:08
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Passing by reference deprecated?
FYI
Unless you need to modify and return modified contents of variables, pas
FYI
Unless you need to modify and return modified contents of variables, pass by
reference makes script execution a little slower under PHP4.
--
Yasuo Ohgaki
""Neil Kimber"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Pass by reference itself is not depr
Pass by reference itself is not deprecated, just call-time
pass-by-reference.
I believe this means your calling line of code being prevented from
specifying that it should be invoked as pass-by-reference.
So,
function NormalPassByRefence(&$prmValue)
{
$prmValue ++;
}
$n
7 matches
Mail list logo