summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2003-03-02 10:19:15 +0000
committerZeev Suraski <zeev@php.net>2003-03-02 10:19:15 +0000
commit4e55747a2b0fd481018bfd390e2aa50569f73c41 (patch)
tree999911ceac279ed56478548a190ffd165f7ca206 /php.ini-recommended
parentf7b7800479ba43c2361ce2be981b7a59a0c9c1e1 (diff)
downloadphp-git-4e55747a2b0fd481018bfd390e2aa50569f73c41.tar.gz
Add JIT initialization for _SERVER and _ENV
(it's less important for the others, even though it should be fairly easy now too)
Diffstat (limited to 'php.ini-recommended')
-rw-r--r--php.ini-recommended5
1 files changed, 5 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index e19b0a01f2..99f4e140c4 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -369,6 +369,11 @@ variables_order = "GPCS"
; to possible security problems, if the code is not very well thought of.
register_globals = Off
+; Whether or not to register the old-style input arrays, HTTP_GET_GLOBALS
+; and friends. If you're not using them, it's recommended to turn them off,
+; for performance reasons.
+register_long_arrays = Off
+
; 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.