Missing ?>

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@247132 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2007-11-27 10:52:00 +00:00
parent 5e999420e3
commit ee3c62d61b

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.118 $ -->
<!-- $Revision: 1.119 $ -->
<chapter xml:id="language.operators" xmlns="http://docbook.org/ns/docbook">
<title>Operators</title>
<simpara>
@ -1013,6 +1013,7 @@ var_dump($e, $f);
$g = true && false; // $g will be assigned to (true && false) which is false
$h = true and false; // $h will be assigned to true
var_dump($g, $h);
?>
]]>
</programlisting>
&example.outputs.similar;