* Bitwise: fix ampersands in last commit.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@278626 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Daniel Convissor 2009-04-13 05:40:33 +00:00
parent 19e71c8c8b
commit 04e70564c7

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.139 $ -->
<!-- $Revision: 1.140 $ -->
<chapter xml:id="language.operators" xmlns="http://docbook.org/ns/docbook">
<title>Operators</title>
<simpara>
@ -445,9 +445,9 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!";
<para>
Use parentheses to ensure the desired
<link linkend="language.operators.precedence">precedence</link>.
For example, <userinput>$a & $b == true</userinput> evaluates
For example, <userinput>$a &amp; $b == true</userinput> evaluates
the equivalency then the bitwise and; while
<userinput>($a & $b) == true</userinput> evaluates the bitwise and
<userinput>($a &amp; $b) == true</userinput> evaluates the bitwise and
then the equivalency.
</para>