32 bits shifting (bug #16366)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164348 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2004-07-26 14:48:35 +00:00
parent 23c125cdd9
commit cc46787fd6

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.73 $ -->
<!-- $Revision: 1.74 $ -->
<chapter id="language.operators">
<title>Operators</title>
<simpara>
@ -375,6 +375,12 @@ echo "hallo" ^ "hello"; // Outputs the ascii values #0 #4 #0 #0 #0
</tbody>
</tgroup>
</table>
<warning>
<para>
Don't right shift for more than 32 bits on 32 bits systems. Don't left shift
in case it results to number longer than 32 bits.
</para>
</warning>
</sect1>
<sect1 id="language.operators.comparison">