Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread pierre....@gmail.com
It was a forced move despite the voices in favor of git back then. - Reply message - From: "Kalle Sommer Nielsen" Date: Fri, Aug 12, 2011 13:23 Subject: [PHP-DEV] behavior of translating dot in the query variable name into underscore character To: "Etienne Kneuss" C

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Ferenc Kovacs
2011/8/12 Johannes Schlüter : > Hi, > > On Fri, 2011-08-12 at 15:48 +0200, Ferenc Kovacs wrote: >> if we would both provide the foo_bar and foo.bar: >> >> - if your code expects foo.bar to be foo_bar, it's there. >> - if you expect foo.bar, it's also fine. >> - if you did a workaround in the past (

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Johannes Schlüter
Hi, On Fri, 2011-08-12 at 15:48 +0200, Ferenc Kovacs wrote: > if we would both provide the foo_bar and foo.bar: > > - if your code expects foo.bar to be foo_bar, it's there. > - if you expect foo.bar, it's also fine. > - if you did a workaround in the past (parse the query string > manually), tha

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Laruence
s/goot at/not good at/ sorry 2011/8/12 Laruence : > Hi: >  I am goot at debate as my poor english, >  I try to make my point clearly, > >  that is , I think there is one reason to do this change, that is > "what you saw should be what you get", > >  this behavior confused any pepole who meet this

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Laruence
Hi: I am goot at debate as my poor english, I try to make my point clearly, that is , I think there is one reason to do this change, that is "what you saw should be what you get", this behavior confused any pepole who meet this issue first, and need explained by document, I agree with

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Ferenc Kovacs
On Fri, Aug 12, 2011 at 3:20 PM, Derick Rethans wrote: > On Fri, 12 Aug 2011, Laruence wrote: > >>      a request uri : http://***/a.b=2  will result $_GET["a_b"] = 2 ( >> the dot was translated into underscore char); >> >>      my point is , since register_globals has be removed already( in >> my

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Derick Rethans
On Fri, 12 Aug 2011, Laruence wrote: > a request uri : http://***/a.b=2 will result $_GET["a_b"] = 2 ( > the dot was translated into underscore char); > > my point is , since register_globals has be removed already( in > my opinion this behavior only make sence when register_globals on

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Mats Lindh
On Fri, Aug 12, 2011 at 1:23 PM, Kalle Sommer Nielsen wrote: >> For BC reasons there is no way we can simply remove it. Old code might >> rely on it without relying on register_globals. > Although we could assign both, but I guess that would eat more memory > that it might actually benefit. Would

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Kalle Sommer Nielsen
Hi Etienne 2011/8/12 Etienne Kneuss > For BC reasons there is no way we can simply remove it. Old code might > rely on it without relying on register_globals. Although we could assign both, but I guess that would eat more memory that it might actually benefit. -- regards, Kalle Sommer Nielse

Re: [PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Etienne Kneuss
Hello, On Fri, Aug 12, 2011 at 12:31, Laruence wrote: > Hi: >     a request uri : http://***/a.b=2  will result $_GET["a_b"] = 2 ( > the dot was translated into underscore char); > >     my point is , since register_globals has be removed already( in > my opinion this behavior only make sence whe

[PHP-DEV] behavior of translating dot in the query variable name into underscore character

2011-08-12 Thread Laruence
Hi: a request uri : http://***/a.b=2 will result $_GET["a_b"] = 2 ( the dot was translated into underscore char); my point is , since register_globals has be removed already( in my opinion this behavior only make sence when register_globals on), should we remove this translating behavio