Re: [PHP-DEV] Key values starting with .

2002-06-27 Thread Andi Gutmans
At 08:32 AM 6/27/2002 -0700, Brian France wrote: >Hello, > > I have a url that ends with ?.value=1, but PHP returns this in > $_REQUEST as _value instead of .value. I believe this is because of this code: > >main/php_variables.c >104 /* ensure that we don't have spaces or dots in the v

Re: [PHP-DEV] Key values starting with .

2002-06-27 Thread Edin Kadribasic
> I can do this: $_REQUEST['.name'] = "testing" then if I do > print_r($_REQUEST) prints it out as .value and not _value. Any > reason for being able to do one, but not the other? Also what is the > "(not binary safe)" part of a variable with a . in its name? I know that changing this would br

[PHP-DEV] Key values starting with .

2002-06-27 Thread Brian France
Hello, I have a url that ends with ?.value=1, but PHP returns this in $_REQUEST as _value instead of .value. I believe this is because of this code: main/php_variables.c 104 /* ensure that we don't have spaces or dots in the variable name (not binary safe) */ 105 for (p=va