Re: [PHP-DEV] Re: Lost feature - variables_order/register_globals mess

2002-01-25 Thread Yasuo Ohgaki
Rasmus Lerdorf wrote: Well, you still need to resolve precedence for $_REQUEST somehow. I forgot about $_REQUEST :) How about this one? - Store EGPCS to $_* hash and initialize them always. That can get expensive since 'E' can be rather large and is usually full of useless stuff.

Re: [PHP-DEV] Re: Lost feature - variables_order/register_globals mess

2002-01-25 Thread Yasuo Ohgaki
Rasmus Lerdorf wrote: Personally, I prefer register_globals=Off for session, but no objection here also. 'S' is Server not Session variables. Big difference. There is currently no real way to control session vars via variables_order. I'm aware of that :) I would like to say session

[PHP-DEV] Re: Lost feature - variables_order/register_globals mess

2002-01-24 Thread Yasuo Ohgaki
Rasmus Lerdorf wrote: In this whirlwind hack job to turn off register_globals, we have lost a very useful feature. Or maybe it was lost earlier and I didn't pay attention. Today you cannot set variables_order to ES and turn register_globals on so that only E and S vars end up in the

[PHP-DEV] Re: Lost feature - variables_order/register_globals mess

2002-01-24 Thread Rasmus Lerdorf
In this whirlwind hack job to turn off register_globals, we have lost a very useful feature. Or maybe it was lost earlier and I didn't pay attention. Today you cannot set variables_order to ES and turn register_globals on so that only E and S vars end up in the global symbol table.