summaryrefslogtreecommitdiff
path: root/php.ini-dist
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-dist
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-dist')
-rw-r--r--php.ini-dist5
1 files changed, 5 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index d54d04a1a1..1b00fb4593 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -354,6 +354,11 @@ variables_order = "EGPCS"
; 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.