diff options
author | foobar <sniper@php.net> | 2000-12-28 09:36:56 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2000-12-28 09:36:56 +0000 |
commit | b0adbf8aff6d9d9bbe82c66482dc977851508578 (patch) | |
tree | bbc0e81a3c2480d8d5356716bc4c3b65f25d55e5 | |
parent | 7af7199a17d659ad1ff65db6d8e28eaad8ff9140 (diff) | |
download | php-git-b0adbf8aff6d9d9bbe82c66482dc977851508578.tar.gz |
Added the arg_separator directive.
-rw-r--r-- | php.ini-dist | 2 | ||||
-rw-r--r-- | php.ini-optimized | 2 | ||||
-rw-r--r-- | php.ini-recommended | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 39cd55e00b..8633650ed1 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -192,6 +192,8 @@ warn_plus_overloading = Off ; warn if the + operator is used with strings ; Data Handling ; ;;;;;;;;;;;;;;;;; ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 +;arg_separator = "&" ; The separator used in PHP generated URLs to separate arguments. + ; Default is "&". variables_order = "EGPCS" ; 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). diff --git a/php.ini-optimized b/php.ini-optimized index 42a4146f42..e8a2192293 100644 --- a/php.ini-optimized +++ b/php.ini-optimized @@ -178,6 +178,8 @@ 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 "&". 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). diff --git a/php.ini-recommended b/php.ini-recommended index 42a4146f42..e8a2192293 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -178,6 +178,8 @@ 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 "&". 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). |