& is an bitwise operaor. it combies two values bitwise.
What is an bitwise operaton?
every integer is intenally represented as a number of bits.
1 is 0001
2 is 0010
4 is 0100
8 is 1000
And so on. every bits value is twice as big as the one preceding it.
you can get other numbers by combining bits
3 is 0011 (2+1)
5 is 0101 (4+1)
a bitwise operation works on evry bit in both variables. & sets evry bit in the result to 1 i it is 1 in bth vakues it operates on.
9&5 == 1
because
9 == 1001
5 == 0101
----------
1 == 0001
| will COMBINE all 1s:
3|5 == 7
3 == 0011
5 == 0101
---------
7 == 0111
How can yo use it?
Example:
define('LOG_WARNING',1);
define('LOG_IO',2);
define('LOG_ALIENATACKS,4);
$myLogLevel = LOG_WARNING | LOG_ALIENATACKS;
now $myLogLevel is a combination of LOG_WANING and LOG_ALIENATACK. you can test it with the & operator:
if($myLogLevel&LOG_WARNING)....//true
if($myLogLevel&LOG_IO)....//false
if($myLogLevel&LOG_ALIENATACKS)....//true run or your live!!!
If you want to know more about the topic search for bitflags and binary operations