diff options
author | foobar <sniper@php.net> | 2005-04-29 01:37:19 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-04-29 01:37:19 +0000 |
commit | 921c39f49605e54f57c048671a78c72b88550519 (patch) | |
tree | 7de698ece6e3c3fa506560bfdfd3c29f1cc209ac | |
parent | 3dcd8c26ee3b218cdeacb21415d6a1df83cce094 (diff) | |
download | php-git-921c39f49605e54f57c048671a78c72b88550519.tar.gz |
Add auto_globals_jit entry to php.ini-* (bug #29514)
-rw-r--r-- | php.ini-dist | 7 | ||||
-rw-r--r-- | php.ini-recommended | 7 |
2 files changed, 14 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 diff --git a/php.ini-recommended b/php.ini-recommended index c5ad526bc5..6a98158e2c 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -456,6 +456,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 |