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 the '<>' mean?

if ($class->stuff <> 'specific') 

Just working on a little project and came across a strange symbol.

share|improve this question
it's a comparator operator, meaning "not equals" – sksallaj Jul 14 '12 at 0:34

marked as duplicate by Michael Berkowski, jeroen, netcoder, tereško, David Thomas Jul 14 '12 at 0:42

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

It means:

different

and is equivalent to !=

You can see a table with all comparison operators here

share|improve this answer

Literally, "less than or greater than", meaning "not equal to"

share|improve this answer

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