|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-23 12:46 UTC] derick@php.net
[2002-08-05 12:46 UTC] edink@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 12 08:00:01 2025 UTC |
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]