|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-05-21 16:20 UTC] i dot thierack at iwt-promotion dot net
Hello, following problem with 4.3.2RC3 (it works with 4.3.1) Browser URL : http://intraddms/fiatbearb/adr_index.php?1234567890 var_dump from $_REQUEST array(2) { [0]=> string(1) "0" ["PHPSESSID"]=> string(32) "3f8ee06297a919da9d84cd713473fe5d" } if have a query like if(!isset($_REQUEST["1234567890"]){ << BUG? it's alway true initialize some variables } if i replace it with $_GET it works. Switch back to 4.3.1 it works also with $_REQUEST regards Ingo Thierack PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 03:00:01 2025 UTC |
The problem appears only with numeric argument names: test.php?123=45 => _REQUEST: Array ( [0] => 45 ) _GET: Array ( [123] => 45 ) test.php?a123=45 => _REQUEST: Array ( [a123] => 45 ) _GET: Array ( [a123] => 45 )