php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13757 Commandline: querystring parser buggy
Submitted: 2001-10-19 11:05 UTC Modified: 2003-05-18 22:41 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: tho at e-dict dot net Assigned:
Status: Closed Package: CGI/CLI related
PHP Version: 4.3.2RC3-dev OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: tho at e-dict dot net
New email:
PHP Version: OS:

 

 [2001-10-19 11:05 UTC] tho at e-dict dot net
executable script /tmp/bug:
>>>
# ! /usr/local/bin/php -f
<?php 
print "V1 = $V1\n";
print "V2 = $V2\n";
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 !

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-12-14 13:36 UTC] yohgaki@php.net
PHP 4.1.0 does this also...
 [2002-06-06 05:41 UTC] sander@php.net
Can you try the CLI in 4.2.x or from the latest CVS? This might have been fixed.
 [2002-06-06 06:03 UTC] mfischer@php.net
Not CLI. CLI doesn't work that way anyway.

CGI does this:
$ cat test.php
#!/home/mfischer/php4/bin/php-cgi -f
<?
        print "V1 = $V1\n";
        print "V2 = $V2\n";
        var_dump($HTTP_GET_VARS);
?>

$ ./test.php "V1=val1&V2=val2"
V1 = 
V2 = 
array(2) {
  ["_/test_php_V1"]=>
  string(4) "val1"
  ["V2"]=>
  string(4) "val2"
}

Admitted, looks wierd. PHP3 compatibility is of no concern here, anyway.

If no one tells me better I'ld expect V1 beingin HTTP_GET_VARS.
 [2002-06-26 09:37 UTC] Ingo dot Freund at e-dict dot net
in 4.2.1 still not fixed

the result remains the same

php doesn't take notice of the first argument
but it is visible in $HTTP_GET_VARS
 [2003-02-08 00:52 UTC] sniper@php.net
fixed in 4.3.0

 [2003-05-07 05:52 UTC] tho at e-dict dot net
tho@dev0:~/test> php -i|grep "PHP Version"
PHP Version => 4.3.0

tho@dev0:~/test> ./test.php "V1=val1&V2=val2"
V1 = 
V2 = val2
array(2) {
  ["_/test_php_V1"]=>
  string(4) "val1"
  ["V2"]=>
  string(4) "val2"
}

Seems not to be fixed in 4.3.0. Please reopen bug.
 [2003-05-07 06:14 UTC] tho at e-dict dot net
bug verified, still there
 [2003-05-18 22:41 UTC] shane@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

RC4 should have the fix
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 12:01:27 2024 UTC