Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions language/types/boolean.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ $foo = True; // assign the value TRUE to $foo
<programlisting role="php">
<![CDATA[
<?php
$action = "show_version";
$show_separators = true;

// == is an operator which tests
// equality and returns a boolean
if ($action == "show_version") {
Expand Down
8 changes: 4 additions & 4 deletions reference/opcache/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -259,15 +259,15 @@
</row>
<row>
<entry><link linkend="ini.opcache.jit">opcache.jit</link></entry>
<entry>"tracing"</entry>
<entry>"disable"</entry>
<entry><constant>INI_ALL</constant></entry>
<entry>Available as of PHP 8.0.0</entry>
<entry>Available as of PHP 8.0.0. Prior to PHP 8.4.0, the default value was "tracing".</entry>
</row>
<row>
<entry><link linkend="ini.opcache.jit-buffer-size">opcache.jit_buffer_size</link></entry>
<entry>0</entry>
<entry>64M</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry>Available as of PHP 8.0.0</entry>
<entry>Available as of PHP 8.0.0. Prior to PHP 8.4.0, the default value was 0.</entry>
</row>
<row>
<entry><link linkend="ini.opcache.jit-debug">opcache.jit_debug</link></entry>
Expand Down