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 Duplicate:
Reference - What does this symbol mean in PHP?

What does this line do?

$theVal = ((($theR << 8) | $theG) << 8) | $theB;

What do the << and | do?

share|improve this question

marked as duplicate by deceze, Quentin, meagar, cHao, Marc B Jun 6 '12 at 19:01

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.

2 Answers

up vote 1 down vote accepted

Those are Bitwise operators that allow evaluation and manipulation of specific bits within an integer.

$a | $b Or Bits that are set in either $a or $b are set.

$a << $b Shift left Shift the bits of $a $b steps to the left (each step means "multiply by two")

$a >> $b Shift right Shift the bits of $a $b steps to the right (each step means "divide by two")

share|improve this answer

The literal answer can be found by reading about Bitwise Operators.

Practically speaking, it converts 3 values for Red, Blue and Green bytes into a single 24bit RGB value.

share|improve this answer

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