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

index 9ba5721cd23f3d0bbee70e5cb3837a5958136f78..bcec02634b18ddd097fc21fe488c15f15320a76f 100644 (file)
@@ -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
 
index c5ad526bc51e9b20c840cca9e368fec588fb90af..6a98158e2c92a0ae2f5882bf7b9006ef112df280 100644 (file)
@@ -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