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-optimized | |
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-optimized')
-rw-r--r-- | php.ini-optimized | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/php.ini-optimized b/php.ini-optimized index b93d412904..8a2218b39c 100644 --- a/php.ini-optimized +++ b/php.ini-optimized @@ -182,8 +182,14 @@ warn_plus_overloading = Off ; warn if the + operator is used with strings ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; -;arg_separator = "&" ; The separator used in PHP generated URLs to separate arguments. - ; Default is "&". + +;arg_separator.output = "&" ; The separator used in PHP generated URLs to separate arguments. + ; Default is "&". + +;arg_separator.input = ";&" ; 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! + variables_order = "GPCS" ; This directive describes the order in which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, ; C, E & S respectively, often referred to as EGPCS or GPC). |