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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
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

Pull Requests

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-2025 The PHP Group
All rights reserved.
Last updated: Tue Jan 21 12:01:29 2025 UTC