From 241bed9350781ee88c3a234daca7e76535cb88ab Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Wed, 27 Feb 2002 13:40:30 +0000 Subject: [PATCH] - FIx for bug #15380 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@71069 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index bcd83d323f..e370cb7466 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -115,8 +115,28 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; Bitwise Operators Bitwise operators allow you to turn specific bits within an - integer on or off. + 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. + + + + +]]> + + + + Bitwise Operators