Hi sports fans!
I have a quick "references" related question.
Ok, I'm passing a Page object by reference to another object:
myClass->myFunction($objPage);
What I want to do is store that Page object as part of the myClass
object (see definition code below).
My question is this: When assigni
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
Can anyone help with this?
I am relativly new to PHP and am trying to use variable numbers of
parameters to functions using the func_get_arg().
However, I am unable to determine the correct syntax for passing by
reference via the variable arg list.
Trevor
/* This Works Fine */
function Foo($In
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
I coulnd't figure out the difference between the two:
function &foo(){
$x = "hello";
return $x;
}
and
function foo(){
$x = "hello";
return &$x;
}
__
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com
--
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
Value); // This will no longer work - it's been
> deprecated
> // $numValue =1 at this point
>
>
>
>
> -----Original Message-
> From: CC Zona [mailto:[EMAIL PROTECTED]]
> Sent: 30 March 2001 04:40
> To: [EMAIL PROTECTED]
> Subject: [PHP] Passing by reference
// $numValue =1 at this point
-Original Message-
From: CC Zona [mailto:[EMAIL PROTECTED]]
Sent: 30 March 2001 04:40
To: [EMAIL PROTECTED]
Subject: [PHP] Passing by reference deprecated?
set_value(&$variable,$value)
{
$variable=value;
}
"Warning: Call-time pass
set_value(&$variable,$value)
{
$variable=value;
}
"Warning: Call-time pass-by-reference has been deprecated - argument passed
by value; If you would like to pass it by reference, modify the declaration
of [runtime function name](). If you would like to enable call-time
pass-by-referen
11 matches
Mail list logo