diff options
author | foobar <sniper@php.net> | 2001-04-04 20:46:26 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-04-04 20:46:26 +0000 |
commit | c34d2b91dad13d793baf94180457a935e04a9526 (patch) | |
tree | f0d95c5ffd241ac49ce4e08571dafaadcb3c8225 /php.ini-dist | |
parent | 382e3c5ad664f206e2fbd9ebb4b2685a99e5f9b7 (diff) | |
download | php-git-c34d2b91dad13d793baf94180457a935e04a9526.tar.gz |
Added new configuration directives:
arg_separator.input and arg_separator.output
Diffstat (limited to 'php.ini-dist')
-rw-r--r-- | php.ini-dist | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/php.ini-dist b/php.ini-dist index f88c2070f4..e1a618000a 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -243,7 +243,12 @@ warn_plus_overloading = Off ; The separator used in PHP generated URLs to separate arguments. ; Default is "&". -;arg_separator = "&" +;arg_separator.output = "&" + +; List of separator(s) used by PHP to parse input URLs into variables. +; Default is "&". +; NOTE: Every character in this directive is considered as separator! +;arg_separator.input = ";&" ; This directive describes the order in which PHP registers GET, POST, Cookie, ; Environment and Built-in variables (G, P, C, E & S respectively, often |