summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-04-29 01:37:19 +0000
committerfoobar <sniper@php.net>2005-04-29 01:37:19 +0000
commit921c39f49605e54f57c048671a78c72b88550519 (patch)
tree7de698ece6e3c3fa506560bfdfd3c29f1cc209ac /php.ini-dist
parent3dcd8c26ee3b218cdeacb21415d6a1df83cce094 (diff)
downloadphp-git-921c39f49605e54f57c048671a78c72b88550519.tar.gz
Add auto_globals_jit entry to php.ini-* (bug #29514)
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist7
1 files changed, 7 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 9ba5721cd2..bcec02634b 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -398,6 +398,13 @@ register_long_arrays = On
; should turn it off for increased performance.
register_argc_argv = On
+; When enabled, the SERVER and ENV variables are created when they're first
+; used (Just In Time) instead of when the script starts. If these variables
+; are not used within a script, having this directive on will result in a
+; performance gain. The PHP directives register_globals, register_long_arrays,
+; and register_argc_argv must be disabled for this directive to have any affect.
+auto_globals_jit = On
+
; Maximum size of POST data that PHP will accept.
post_max_size = 8M