betz Sun Jan 4 21:27:00 2004 EDT
Modified files:
/phpdoc/en/language operators.xml
Log:
CS: examples start at col 0
Index: phpdoc/en/language/operators.xml
diff -u phpdoc/en/language/operators.xml:1.57 phpdoc/en/language/operators.xml:1.58
--- phpdoc/en/language/operators.xml:1.57 Fri Dec 12 14:56:00 2003
+++ phpdoc/en/language/operators.xml Sun Jan 4 21:27:00 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.57 $ -->
+<!-- $Revision: 1.58 $ -->
<chapter id="language.operators">
<title>Operators</title>
<simpara>
@@ -285,13 +285,13 @@
<programlisting role="php">
<![CDATA[
<?php
- echo 12 ^ 9; // Outputs '5'
+echo 12 ^ 9; // Outputs '5'
- echo "12" ^ "9"; // Outputs the Backspace character (ascii 8)
- // ('1' (ascii 49)) ^ ('9' (ascii 57)) = #8
+echo "12" ^ "9"; // Outputs the Backspace character (ascii 8)
+ // ('1' (ascii 49)) ^ ('9' (ascii 57)) = #8
- echo "hallo" ^ "hello"; // Outputs the ascii values #0 #4 #0 #0 #0
- // 'a' ^ 'e' = #4
+echo "hallo" ^ "hello"; // Outputs the ascii values #0 #4 #0 #0 #0
+ // 'a' ^ 'e' = #4
?>
]]>
</programlisting>