From: foobar Date: Fri, 29 Apr 2005 01:37:37 +0000 (+0000) Subject: MFH: Add auto_globals_jit entry to php.ini-* (bug #29514) X-Git-Tag: php-5.0.5RC1~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a0d20f91911d650f3769266a03756b86a98a584;p=php MFH: Add auto_globals_jit entry to php.ini-* (bug #29514) --- diff --git a/php.ini-dist b/php.ini-dist index 5ff6edde36..332bd5c4b9 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -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 diff --git a/php.ini-recommended b/php.ini-recommended index df75d75b9c..f0dc814eab 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -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