Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I often use ($var & 1) in my code, which returns true if $var is an odd number and false if it's an even number.

Just dawned on me that I have no idea what "&" actually does. Anyone care to explain?

share|improve this question
3  
Wouldn't it be good if you could find an answer for any programming question on SO? The only way this would ever happen is if "simple" questions get asked as well as "puzzle" ones. On that basis, methinks this a valid question. – da5id Mar 1 '09 at 22:41
7  
Don't underestimate the number of people who are successful programmers but don't know what a bitwise operation does. It's a valid question and a thorough understanding helps explain low level workings of electric circuits, encryption and hashing, etc. – thomasrutter Mar 2 '09 at 5:41
6  
Of course I tried to Google an answer before I asked. Had I known the "&" operator was called "bitwise", I would have been able to find something. But a search for "php &" or "php & operator" did not turn up what I was looking for. – chipotle_warrior Mar 4 '09 at 4:08
10  
... Not saying isn't not in the manual, but I couldn't find it then and can't find it even now. I try to exercise some degree of due diligence before asking questions on SO. If you think a question is unnecessary, why give a hard time? Answer, vote it down or move on. – chipotle_warrior Mar 4 '09 at 6:15
7  
The quality of answers I received here (which included detailed explanations on binary) are far better than I was able to find in my own 15 minutes of research on Google, PHP docs and SO. That's what makes this community such a valuable resource. – chipotle_warrior Mar 4 '09 at 6:18
show 6 more comments

7 Answers

up vote 22 down vote accepted

& is binary and. If you have a binary value, and you and with another binary value, then the result will be the bitwise and of the two. An example:

  01101010
& 01011001
= 01001000

The rightmost bit is either a 1 (and in that case the number is an odd number) or it is a 0, in which case the number is even. If you & a number with 1, you only look at the least significant bit, and the if checks if the number is a 1 or a 0. As others have mentioned, look at the bitwise operators for info on how they work.

share|improve this answer

This is also interesting to know about bitwise and php.

/**
 * regular
 */
echo (true && true); // 1
echo (true && false); // nothing

echo (true || false); // 1
echo (false || false); // nothing

echo (true xor false); // 1
echo (false xor false); // nothing

/**
 * bitwise
 */
echo (true & true); // 1
echo (true & false); // 0

echo (true | false); // 1
echo (false | false); // 0

echo (true ^ false); // 1
echo (false ^ false); // 0
share|improve this answer
This answer doesn't really explain how && is different to & very well in my opinion. && casts both parameters to boolean, and is like comparing a single bit. & compares in a bitwise fashion: each bit in one parameter is compared with each bit in the other. – thomasrutter Mar 2 '09 at 5:37
1  
"regular" is known as the logical and/or – Ryan Kearney Sep 15 '09 at 17:12

Two operations which are fundamental to binary systems are OR and AND.

OR means 'if either A is on or B is on'. A real world example would be two switches in parallel. If either is allowing current through, then current passes through.

AND means 'if both A and B is on'. The real world example is two switches in series. Current will only pass through if both are allowing current through.

In a computer, these aren't physical switches but semiconductors, and their functionality are called logic gates. They do the same sorts of things as the switches - react to current or no current.

When applied to integers, every bit in one number is combined with every bit in the other number. So to understand the bitwise operators OR and AND, you need to convert the numbers to binary, then do the OR or AND operation on every pair of matching bits.

That is why:

00011011 (odd number)
AND
00000001 (& 1)
== 
00000001 (results in 1)

Whereas

00011010 (even number)
AND
00000001 (& 1)
==
00000000 (results in 0)

The (& 1) operation therefore compares the right-most bit to 1 using AND logic. All the other bits are effectively ignored because anything AND nothing is nothing.

Other fundamental operations to binary systems include NOT and XOR. NOT means 'if A is off' and is the only form of logic gate that takes only one signal or 'parameter' instead of two. XOR means 'if either A or B is on, but not both'. And then there are NAND, NOR, and NXOR, which are basically just NOT combined with AND, OR, and XOR, ie NAND means 'if A and B are not both on'.

In programming, the operator

& means AND,
| means OR, 
~ means NOT, and
^ means XOR.

The others can be made up by combining these, for example:

~ (a & b) is equivalent to a NAND operation
share|improve this answer

That is the bitwise AND - here is the PHP manual page on it.

share|improve this answer

I know your question is about understanding the bitwise operator and the accepted answer explains it well. But for the example you give, I cannot help but recommending you use the modulo operator instead:

($var % 2) /* instead of */ ($var & 1)

Because it makes the intent clear that you are checking that the number is odd (not divisible by two), and it is more generic, so you can use ($var % 3) the same way and deduce how it works for any N.

share|improve this answer

This link covers the operation.

share|improve this answer

In addition to the other answers, it's worth noting that

if(func1() && func2())

Will only call func1() if it returns false ("lazy evaluation"), whereas

if(func1() & func2())

Will call both functions regardless, but the truth tables for both will be the same.

(At least, in most languages this is true, I assume PHP is smart enough to optimize away the second function call too)

share|improve this answer
+1, this is very interesting and not known by everyone – dgraziotin Jan 31 '10 at 19:28
Edit: It will only call func1() if it returns false, not true, because false "and" anything (true or false) will still be false. – Mark Jan 31 '10 at 19:54
Important distinction. – James Poulson Jun 10 '11 at 8:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.