Skip to content

Commit 0c31b7f

Browse files
committed
Update default values for opcache.jit settings
php/doc-en@f90b26b
1 parent e98dca2 commit 0c31b7f

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

language/types/boolean.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: e587d0655e426f97b3fcb431453da5030e743b23 Maintainer: takagi Status: ready -->
3+
<!-- EN-Revision: f90b26b377a61c76c0f64028e47553e550411d08 Maintainer: takagi Status: ready -->
44
<!-- CREDITS: hirokawa,shimooka,mumumu -->
55
<sect1 xml:id="language.types.boolean">
66
<title>論理型 (boolean) </title>
@@ -38,6 +38,9 @@ $foo = True; // 値TRUEを$fooに代入する
3838
<programlisting role="php">
3939
<![CDATA[
4040
<?php
41+
$action = "show_version";
42+
$show_separators = true;
43+
4144
// == は、boolean型を返す演算子
4245
if ($action == "show_version") {
4346
echo "バージョンは1.23です。";

reference/opcache/ini.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 33437fb390b792266f4bdae7a0797808a6d7b9d4 Maintainer: satoruyoshida Status: ready -->
3+
<!-- EN-Revision: f90b26b377a61c76c0f64028e47553e550411d08 Maintainer: satoruyoshida Status: ready -->
44
<!-- CREDITS: mumumu -->
55
<sect1 xml:id="opcache.configuration" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
66
&reftitle.runtime;
@@ -261,15 +261,15 @@
261261
</row>
262262
<row>
263263
<entry><link linkend="ini.opcache.jit">opcache.jit</link></entry>
264-
<entry>"tracing"</entry>
264+
<entry>"disable"</entry>
265265
<entry><constant>INI_ALL</constant></entry>
266-
<entry>PHP 8.0.0 以降で利用可能</entry>
266+
<entry>PHP 8.0.0 以降で利用可能。PHP 8.4.0 より前のバージョンでは、デフォルト値は "tracing" でした。</entry>
267267
</row>
268268
<row>
269269
<entry><link linkend="ini.opcache.jit-buffer-size">opcache.jit_buffer_size</link></entry>
270-
<entry>0</entry>
270+
<entry>64M</entry>
271271
<entry><constant>INI_SYSTEM</constant></entry>
272-
<entry>PHP 8.0.0 以降で利用可能</entry>
272+
<entry>PHP 8.0.0 以降で利用可能。PHP 8.4.0 より前のバージョンでは、デフォルト値は 0 でした。</entry>
273273
</row>
274274
<row>
275275
<entry><link linkend="ini.opcache.jit-debug">opcache.jit_debug</link></entry>

0 commit comments

Comments
 (0)