Skip to content

Commit f90b26b

Browse files
authored
Update default values for opcache.jit settings (#4900)
1 parent 4947a99 commit f90b26b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

language/types/boolean.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ $foo = True; // assign the value TRUE to $foo
3535
<programlisting role="php">
3636
<![CDATA[
3737
<?php
38+
$action = "show_version";
39+
$show_separators = true;
40+
3841
// == is an operator which tests
3942
// equality and returns a boolean
4043
if ($action == "show_version") {

reference/opcache/ini.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,15 +259,15 @@
259259
</row>
260260
<row>
261261
<entry><link linkend="ini.opcache.jit">opcache.jit</link></entry>
262-
<entry>"tracing"</entry>
262+
<entry>"disable"</entry>
263263
<entry><constant>INI_ALL</constant></entry>
264-
<entry>Available as of PHP 8.0.0</entry>
264+
<entry>Available as of PHP 8.0.0. Prior to PHP 8.4.0, the default value was "tracing".</entry>
265265
</row>
266266
<row>
267267
<entry><link linkend="ini.opcache.jit-buffer-size">opcache.jit_buffer_size</link></entry>
268-
<entry>0</entry>
268+
<entry>64M</entry>
269269
<entry><constant>INI_SYSTEM</constant></entry>
270-
<entry>Available as of PHP 8.0.0</entry>
270+
<entry>Available as of PHP 8.0.0. Prior to PHP 8.4.0, the default value was 0.</entry>
271271
</row>
272272
<row>
273273
<entry><link linkend="ini.opcache.jit-debug">opcache.jit_debug</link></entry>

0 commit comments

Comments
 (0)