betz Wed May 29 05:54:38 2002 EDT
Modified files:
/phpdoc/en/language operators.xml
Log:
only example output <br> to <br />
Index: phpdoc/en/language/operators.xml
diff -u phpdoc/en/language/operators.xml:1.36 phpdoc/en/language/operators.xml:1.37
--- phpdoc/en/language/operators.xml:1.36 Tue May 28 17:31:56 2002
+++ phpdoc/en/language/operators.xml Wed May 29 05:54:38 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.36 $ -->
+<!-- $Revision: 1.37 $ -->
<chapter id="language.operators">
<title>Operators</title>
<simpara>
@@ -538,23 +538,23 @@
<?php
echo "<h3>Postincrement</h3>";
$a = 5;
-echo "Should be 5: " . $a++ . "<br>\n";
-echo "Should be 6: " . $a . "<br>\n";
+echo "Should be 5: " . $a++ . "<br />\n";
+echo "Should be 6: " . $a . "<br />\n";
echo "<h3>Preincrement</h3>";
$a = 5;
-echo "Should be 6: " . ++$a . "<br>\n";
-echo "Should be 6: " . $a . "<br>\n";
+echo "Should be 6: " . ++$a . "<br />\n";
+echo "Should be 6: " . $a . "<br />\n";
echo "<h3>Postdecrement</h3>";
$a = 5;
-echo "Should be 5: " . $a-- . "<br>\n";
-echo "Should be 4: " . $a . "<br>\n";
+echo "Should be 5: " . $a-- . "<br />\n";
+echo "Should be 4: " . $a . "<br />\n";
echo "<h3>Predecrement</h3>";
$a = 5;
-echo "Should be 4: " . --$a . "<br>\n";
-echo "Should be 4: " . $a . "<br>\n";
+echo "Should be 4: " . --$a . "<br />\n";
+echo "Should be 4: " . $a . "<br />\n";
?>
]]>
</programlisting>