mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
23c125cdd9
commit
cc46787fd6
1 changed files with 7 additions and 1 deletions
|
@ -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">
|
||||
|
|
Loading…
Reference in a new issue