Uncategorized
PHP Bitwise Operator Simplified
Before jumping to the section you must have knowledge about Bit (Binary Digit ) and also two’s complement in binary. & Operator [AND]It will return true if both operands have 1 in its binary value. 4 & 3 will return true. Because decimal 4 is equivalent to 100 and decimal Read more…