Skip to content
Open
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
6 changes: 5 additions & 1 deletion language/types/boolean.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 4657c1173e6b3852cdc8db4fc64f380d10ebae0c Maintainer: hholzgra Status: ready -->
<!-- EN-Revision: ee66d210fb1dd5799fbca9881c6ac2560a19579d Maintainer: hholzgra Status: ready -->
<!-- Reviewed: yes -->
<!-- Rev-Revision: 346c0bd13f99888108cbefeb9c7c17923cac1a47 Reviewer: samesch -->
<sect1 xml:id="language.types.boolean">
Expand All @@ -22,7 +22,10 @@
<programlisting role="php">
<![CDATA[
<?php

$foo = True; // weist $foo den Wert TRUE zu

var_dump($foo); // bool(true)
?>
]]>
</programlisting>
Expand All @@ -39,6 +42,7 @@ $foo = True; // weist $foo den Wert TRUE zu
<programlisting role="php">
<![CDATA[
<?php

$action = "show_version";
$show_separators = true;

Expand Down
Loading