]> granicus.if.org Git - php/commitdiff
MFH: Add auto_globals_jit entry to php.ini-* (bug #29514)
authorfoobar <sniper@php.net>
Fri, 29 Apr 2005 01:37:37 +0000 (01:37 +0000)
committerfoobar <sniper@php.net>
Fri, 29 Apr 2005 01:37:37 +0000 (01:37 +0000)
php.ini-dist
php.ini-recommended

index 5ff6edde368bebed94543baa7be7b3571c6a6b57..332bd5c4b90d07437ba87fad9eed5c4199aed428 100644 (file)
@@ -394,6 +394,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
 
index df75d75b9c0c8fdec4b61644e7ae0c371d63d00e..f0dc814eabfbfc458be5e1ace63628f7b5808913 100644 (file)
@@ -452,6 +452,13 @@ register_long_arrays = Off
 ; should turn it off for increased performance.
 register_argc_argv = Off
 
+; 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