Re: [PHP-DEV] referencing Superglobals with variable variables inside functions

2005-01-31 Thread Jason Sweat
On Mon, 31 Jan 2005 19:27:31 +0100, Michael Virnstein <[EMAIL PROTECTED]> wrote: > Atm it isn't possible to use a construct like $var = ${'_GET'}; inside a > function or method. Will this behaviour change in future versions of > PHP? I think it is somehow odd and inconsistent to not be able to use

[PHP-DEV] referencing Superglobals with variable variables inside functions

2005-01-31 Thread Michael Virnstein
Atm it isn't possible to use a construct like $var = ${'_GET'}; inside a function or method. Will this behaviour change in future versions of PHP? I think it is somehow odd and inconsistent to not be able to use the superglobals that way, while it is possible outside of functions and methods an