mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
* 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:
parent
19e71c8c8b
commit
04e70564c7
1 changed files with 3 additions and 3 deletions
|
@ -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 & $b == true</userinput> evaluates
|
||||
the equivalency then the bitwise and; while
|
||||
<userinput>($a & $b) == true</userinput> evaluates the bitwise and
|
||||
<userinput>($a & $b) == true</userinput> evaluates the bitwise and
|
||||
then the equivalency.
|
||||
</para>
|
||||
|
||||
|
|
Loading…
Reference in a new issue