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.

Possible Duplicates:
Reference - What does this symbol mean in PHP?
What is the difference between the | and || operators?

Just bumped into this line of code, and I was wondering what is the difference between these two case:

The person who did this do not remember what was the meaning, but it was important.

...
if ($condition1 | $condition2) {
...
...
if ($condition1 || $condition2) {
...
share|improve this question
1  
I tried to search for operator and | before asking the question, but didn't found anything (since I didn't know the term to use (bitwise operator). The question can be deleted, thanks. – yvoyer Mar 22 '11 at 16:19
@yvoyer: As a general tip, you can visit php.net/whatever and PHP will translate the whatever into a search for that term. The operators URL I posted above was the result of hitting php.net/operator – Marc B Mar 22 '11 at 16:25
show 1 more comment

marked as duplicate by BoltClock, Marc B, Elzo Valugi, Prasoon Saurav, Gordon Mar 22 '11 at 16:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 0 down vote accepted

| is a bitwise or, || is a logical or. | operates on binary values whereas || operates on boolean ones.

E.g. 5 | 3 is 0101 OR 0011 which is 0111 which is 7, whereas True || False is True and False || False is False.

share|improve this answer

| = bitwise or

|| = boolean or

share|improve this answer

| is the bitwise-OR-operator while || is the logical-OR-operator.

share|improve this answer

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