Re: [PHP-DEV] regression in the new parameter parsing API, 5.3

2009-01-06 Thread Pierre Joye
On Tue, Jan 6, 2009 at 9:00 PM, Hannes Magnusson wrote: > On Tue, Jan 6, 2009 at 18:38, Pierre Joye wrote: >> hi, >> >> The new parameter parser introduced a regression (testing with >> 5.3-cvs) on how "z!" is processed. Example code: >> >> if (0) { >>$authns = 1; >>$addtl = 1; >>

Re: [PHP-DEV] regression in the new parameter parsing API, 5.3

2009-01-06 Thread Hannes Magnusson
On Tue, Jan 6, 2009 at 18:38, Pierre Joye wrote: > hi, > > The new parameter parser introduced a regression (testing with > 5.3-cvs) on how "z!" is processed. Example code: > > if (0) { >$authns = 1; >$addtl = 1; > } > $result = dns_get_record("php.net", DNS_ANY, $authns, $addtl);

[PHP-DEV] regression in the new parameter parsing API, 5.3

2009-01-06 Thread Pierre Joye
hi, The new parameter parser introduced a regression (testing with 5.3-cvs) on how "z!" is processed. Example code: if (0) { $authns = 1; $addtl = 1; } $result = dns_get_record("php.net", DNS_ANY, $authns, $addtl); print_r($result); var_dump($authns); var_dump($addtl); With 5.2,