PHP - Bitwise and: &

Bitwise AND with another name bit clearing operation. it get the bit clear name after logical and operator:just in case it's true if both inputs are true in all other situations the result is false. it transferred to the variables means that only those bits remain set to 1 where both inputs was 1 otherwise resets. this property can be used for example to query the value of a specific bit as follows: for example, if we interest a value of 3rd bit, then we perform bitwise AND of the variable and the number 4, if the result equals 4 so that means that the bit is set, and if not this bit is 0. and why I chose number 4 for example? number 4 displayed in bit form: 0100, only 3rd bit is set to 1, exactly what we want to test.

&

Description

par1 & par2
Used keywords: &

Input


Output

Examples

PHP

Bitwise and the possible of use:
$x = 0xf & 0xff;      // x = 0xf
$y = 5 & 3;           // y = 1
$z = ($x & 5) & $y;     // z = 1

PHP

Even one example in what situations we can use the operation bitwise and:
$i & $j
0xabcd & $k
2 & ($i & 4)

PHP

Other pieces of example codes:
0xff & 0x05
$z = ~($x & 5) & $y
($i & 4)
($i & $j)
($i & $j)

You can find it in the following collections: bitwise operators
Languages: en hu cz sk