summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-01-28 18:29:37 +0000
committerZeev Suraski <zeev@php.net>2000-01-28 18:29:37 +0000
commit99f079a3495f8b909d2f79c3c67b88f89e316f49 (patch)
treec8bc111e4c40457fd18a7d6efa2b8e54a5f11b36 /php.ini-dist
parentab16816eb8ab4efd6b547ca68d6db2d530c15cda (diff)
downloadphp-git-99f079a3495f8b909d2f79c3c67b88f89e316f49.tar.gz
- A few fixes
- Added register_argv_argc directive to allow disabling of argv/argc
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist4
1 files changed, 4 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 4714a1bb91..583f5df0bd 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -146,6 +146,10 @@ register_globals = On ; Whether or not to register the EGPCB variables as globa
; most sense when coupled with track_vars - in which case you can
; access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
+register_argv_argc = On ; This directive tells PHP whether to declare the argv&argc
+ ; variables (that would contain the GET information). If you
+ ; don't use these variables, you should turn it off for
+ ; increased performance
track_vars = On ; enable the $HTTP_*_VARS[] arrays, where * is one of
; ENV, POST, GET, COOKIE or SERVER.
gpc_order = "GPC" ; This directive is deprecated. Use variables_order instead.