mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
Document the auto_globals_jit directive.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@180788 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
667fa1cc3f
commit
cd0711cea0
1 changed files with 24 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
|
||||
<appendix id="ini">
|
||||
<title>&php.ini; directives</title>
|
||||
|
@ -192,7 +192,7 @@
|
|||
<entry>Available since PHP 4.3.0.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>auto_globals_jit</entry>
|
||||
<entry><link linkend="ini.auto-globals-jit">auto_globals_jit</link></entry>
|
||||
<entry>"1"</entry>
|
||||
<entry>PHP_INI_PERDIR</entry>
|
||||
<entry>Available since PHP 5.0.0.</entry>
|
||||
|
@ -2587,6 +2587,28 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.auto-globals-jit">
|
||||
<term>
|
||||
<parameter>auto_globals_jit</parameter>
|
||||
<type>boolean</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
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.
|
||||
</para>
|
||||
<para>
|
||||
The PHP directives
|
||||
<link linkend="ini.register-globals">register_globals</link>,
|
||||
<link linkend="ini.register-long-arrays">register_long_arrays</link>,
|
||||
and <link linkend="ini.register-argc-argv">register_argc_argv</link>
|
||||
must be disabled for this directive to have any affect.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.register-globals">
|
||||
<term>
|
||||
<parameter>register_globals</parameter>
|
||||
|
|
Loading…
Reference in a new issue