Re: [PHP-DEV] $GLOBALS broken?

2003-03-04 Thread J Smith
Just noticed register_long_arrays. Turning it on fixes problems with $_SERVER and $_ENV, but $GLOBALS still acts weird. J Shane Caraveo wrote: > It's a patch to ze2 that was done over the weekend, there is a new ini > setting that if you turn it on will fix the problem, just cannot > remember

Re: [PHP-DEV] $GLOBALS broken?

2003-03-04 Thread Shane Caraveo
Shane Caraveo wrote: It's a patch to ze2 Actually, it may not have been to ze2 itself. that was done over the weekend, there is a new ini setting that if you turn it on will fix the problem, just cannot remember what it was right now... Shane Sebastian Bergmann wrote: Notice: Undefined varia

Re: [PHP-DEV] $GLOBALS broken?

2003-03-04 Thread Shane Caraveo
It's a patch to ze2 that was done over the weekend, there is a new ini setting that if you turn it on will fix the problem, just cannot remember what it was right now... Shane Sebastian Bergmann wrote: Notice: Undefined variable: GLOBALS in E:\test.php on line 7 1 -- PHP Development Ma

[PHP-DEV] $GLOBALS broken?

2003-03-04 Thread Sebastian Bergmann
Notice: Undefined variable: GLOBALS in E:\test.php on line 7 1 -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ -- PHP Development Mailing List

Re: [PHP-DEV] $GLOBALS

2002-07-08 Thread Rasmus Lerdorf
There is a reason $GLOBALS is named that way. It needs to be extremely obvious that a function is mucking with a global variable. If you shorten it to $_ you have lost the entire point. -Rasmus On Mon, 8 Jul 2002, Tit "Black" Petric wrote: > is there an alias to $GLOBALS .. seems kinda long t

Re: [PHP-DEV] $GLOBALS

2002-07-08 Thread Hartmut Holzgraefe
[EMAIL PROTECTED] wrote: > On Mon, 8 Jul 2002, Tit "Black" Petric wrote: >>is there an alias to $GLOBALS .. seems kinda long to type.. if not, can i >>suggest "$_" or is it taken anywhere? >[...] > 2. $GLOBALS is fine, and IMO we should not implement $_ because this is >against the spirit of P

Re: [PHP-DEV] $GLOBALS

2002-07-08 Thread derick
On Mon, 8 Jul 2002, Tit "Black" Petric wrote: > is there an alias to $GLOBALS .. seems kinda long to type.. if not, can i > suggest "$_" or is it taken anywhere? 1. Please do not reply to another thread with a different topic 2. $GLOBALS is fine, and IMO we should not implement $_ because this i

[PHP-DEV] $GLOBALS

2002-07-08 Thread Tit \"Black\" Petric
is there an alias to $GLOBALS .. seems kinda long to type.. if not, can i suggest "$_" or is it taken anywhere? -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php