actually, it does work and it does exist.
Try using print_r() or
print_r(array_keys($GLOBALS));
and you will see an entry for GLOBALS
mine is located at #13
Jim Lucas
----- Original Message -----
From: "Greg Beaver" <[EMAIL PROTECTED]>
To: "Leif K-Brooks" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, August 01, 2003 12:45 PM
Subject: Re: [PHP] Re: Globals
> Try this code:
>
> <?php
> function blah() {
> var_dump($GLOBALS['GLOBALS']);
>
> }
>
> blah();
> ?>
>
> It appears that in a function scope, it doesn't. This is definitely a
> bug, I'll post it if it hasn't already been noticed.
>
> Greg
>
> Leif K-Brooks wrote:
>
> > Greg Beaver wrote:
> >
> >> $GLOBALS does not contain a reference to itself
> >
> >
> > Yes it does. I just ran the following, and I got "Greg is wrong."
> >
> > <?php
> > $foo = 'Greg is wrong.';
> > echo $GLOBALS['GLOBALS']['GLOBALS']['GLOBALS']['foo'];
> > ?>
> >
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php