|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-10-19 11:11 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 15:00:01 2025 UTC |
executable script /tmp/bug: >>> # ! /usr/local/bin/php -f <?php print "V1 = $V1n"; print "V2 = $V2n"; var_dump($HTTP_GET_VARS); ?> <<< command: $ /tmp/bug "V1=val1&V2=val2" output: >>> V1 = V2 = val2 array(2) { ["/tmp/bug_V1"]=> string(4) "val1" ["V2"]=> string(4) "val2" } <<< problem: ... see: the first array index is parsed to "/tmp/bug_V1". downwardcompatibility to PHP3 not given !