summaryrefslogtreecommitdiff
path: root/php.ini-optimized
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-04-07 19:55:05 +0000
committerZeev Suraski <zeev@php.net>2000-04-07 19:55:05 +0000
commit83252f57b6e0bcd0a2aa12211618e1f406aa6169 (patch)
tree769b07456d5b6c80d7d40c554c020347df88bfdf /php.ini-optimized
parent34ba0394cbf63178da6991d2050c73d58122f894 (diff)
downloadphp-git-83252f57b6e0bcd0a2aa12211618e1f406aa6169.tar.gz
*** empty log message ***
Diffstat (limited to 'php.ini-optimized')
-rw-r--r--php.ini-optimized5
1 files changed, 4 insertions, 1 deletions
diff --git a/php.ini-optimized b/php.ini-optimized
index a985f6edba..9f1d226f8b 100644
--- a/php.ini-optimized
+++ b/php.ini-optimized
@@ -31,6 +31,9 @@
; Input data is no longer escaped with slashes so that it can be sent into
; SQL databases without further manipulation. Instead, you should use the
; function addslashes() on each input element you wish to send to a database.
+; - variables_order = "GPCS"
+; The environment variables are not hashed into the $HTTP_ENV_VARS[]. To access
+; environment variables, you can use getenv() instead.
;;;;;;;;;;;;;;;;;;;;
@@ -147,7 +150,7 @@ warn_plus_overloading = Off ; warn if the + operator is used with strings
;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
-variables_order = "EGPCS" ; This directive describes the order in which PHP registers
+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).
; Registration is done from left to right, newer values override