Re: [PHP] How to access arrays from $GLOBAL?

2002-03-15 Thread bvr
Maybe it makes sense to you like this: $mtxt = $GLOBALS['mtxt']; $mtxt === $GLOBALS['mtxt'] $mtxt[1] === $GLOBALS['mtxt'][1] bvr. >hmm.. the '===' operator, now that's weird ;) >>Because in my mind (which I know is totally wrong in this instance, I'm just >>explaining for your benefit) usi

RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Ford, Mike [LSS]
> -Original Message- > From: Richard Davey [mailto:[EMAIL PROTECTED]] > Sent: 13 March 2002 17:12 > > "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I don't understand why you think it is illogical. How else > would you > > deref

Re: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Andrey Hristov
;[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, March 13, 2002 7:09 PM Subject: RE: [PHP] How to access arrays from $GLOBAL? > I am not sure there is any. $GLOBALS is simply an array that contains > individual references to each global variable. > > For example:

RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Rasmus Lerdorf
ginal Message- > From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 13, 2002 9:53 AM > To: Richard Davey > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] How to access arrays from $GLOBAL? > > > I don't understand why you think it is illogical. How e

Re: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Richard Davey
"Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I don't understand why you think it is illogical. How else would you > dereference a multi-dimensional array? Because in my mind (which I know is totally wrong in this instance, I'm just explaini

Re: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Andrey Hristov
Sources. Andrey - Original Message - From: "Hunter, Ray" <[EMAIL PROTECTED]> To: "'Rasmus Lerdorf'" <[EMAIL PROTECTED]>; "Richard Davey" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, March 13, 2002 6:59 PM

RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Hunter, Ray
Davey Cc: [EMAIL PROTECTED] Subject: Re: [PHP] How to access arrays from $GLOBAL? I don't understand why you think it is illogical. How else would you dereference a multi-dimensional array? On Wed, 13 Mar 2002, Richard Davey wrote: > "Mike Ford" <[EMAIL PROTECTED]> wr

Re: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Andrey Hristov
[2]] I am not nagging(not sure for the word) at you. Best regards, Andrey Hristov - Original Message - From: "Richard Davey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 13, 2002 6:52 PM Subject: Re: [PHP] How to access arrays from $GLOBAL?

Re: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Rasmus Lerdorf
I don't understand why you think it is illogical. How else would you dereference a multi-dimensional array? On Wed, 13 Mar 2002, Richard Davey wrote: > "Mike Ford" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > $GLOBALS['mtxt'][1] > > Fantastic :) > > Th

Re: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Richard Davey
"Mike Ford" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > $GLOBALS['mtxt'][1] Fantastic :) That's totally illogical but it works a treat. PHP has some weird syntax rules sometimes! Cheers, Rich -- Fatal Design http://www.fatal-design.com Atari / DarkBASIC

RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Ford, Mike [LSS]
> -Original Message- > From: Richard Davey [mailto:[EMAIL PROTECTED]] > Sent: 13 March 2002 16:02 > > I have a global array $mtxt that is created in my script. > I have a function from which I want to access a value from that array: > > $mtxt[1] = "Test"; > $text = $GLOBALS['mtxt[1]']; >