php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #18496 arg_separator.input misbehavior
Submitted: 2002-07-23 11:42 UTC Modified: 2002-08-05 12:46 UTC
From: cynic@php.net Assigned: edink (profile)
Status: Closed Package: Unknown/Other Function
PHP Version: 4CVS-2002-07-23 OS: FreeBSD 4.6-STABLE
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: cynic@php.net
New email:
PHP Version: OS:

 

 [2002-07-23 11:42 UTC] cynic@php.net
test.php:
<?
    header('Content-Type: text/plain');

    echo "\narg_separator.input: ";
    print_r(ini_get('arg_separator.input'));

    echo "\n\$_GET: ";
    print_r($_GET);

call this either with 
test.php?foo=1&bar=2
or
test.php?foo=1;bar=2

output:

arg_separator.input: ;&
$_GET: Array
(
    [foo] => 1
)

apache-1.3.2[26]

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-07-23 12:46 UTC] derick@php.net
Assigning to Edin as he touched this recently. In the meanwhile you can disable the mbstring extension (--disable-mbstring).

Derick
 [2002-08-05 12:46 UTC] edink@php.net
This should be fixed in the current CVS.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 09:01:28 2024 UTC