From c1dbc50daa2cf599ab21b24d3c9ee19289c2a8f5 Mon Sep 17 00:00:00 2001 From: Kenneth Schwartz Date: Thu, 1 Apr 2004 08:25:52 +0000 Subject: [PATCH] bug #18680: bitwise operators use character's ASCII values when using strings git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@155123 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index 9f546e09fc..7aca6d3aef 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -277,8 +277,8 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; Bitwise operators allow you to turn specific bits within an integer on or off. If both the left- and right-hand parameters are - strings, the bitwise operator will operate on the characters in this - string. + strings, the bitwise operator will operate on the characters' ASCII + values.