diff options
author | Zeev Suraski <zeev@php.net> | 2000-01-28 18:29:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-01-28 18:29:37 +0000 |
commit | 99f079a3495f8b909d2f79c3c67b88f89e316f49 (patch) | |
tree | c8bc111e4c40457fd18a7d6efa2b8e54a5f11b36 /php.ini-dist | |
parent | ab16816eb8ab4efd6b547ca68d6db2d530c15cda (diff) | |
download | php-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-dist | 4 |
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. |