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.

Normally I would use !=, then when I saw this sign <> it means not equal to as well.

After that, I went to search on Google, what's the difference between <> and !=. But I could not find the answer.

Anyone care to explain?

share|improve this question
One difference, not a explicit one, would be that in some languages you can do !== to verify if the compared values and types are identical. I don't know if you can do that with <>. The only time I remember working with <> was in QBasic and later on VB6 YEARS ago. – Ben Oct 18 '10 at 3:32

6 Answers

up vote 17 down vote accepted

<> has a higher precedence than !=. Otherwise they're identical.

share|improve this answer
1  
As to why there's two... most likely legacy. <> used to be/is popular in other languages, so PHP adopted it as well. – deceze Oct 18 '10 at 3:13
Oh, come on everybody, stop upvoting this ridiculous ten-word answer. :o) – deceze Oct 18 '10 at 5:56
-1 coz i'm jelaous ;) – styu Nov 19 '10 at 10:12

There is no difference. Some languages use <> and some use !=, and some like PHP allow both.

share|improve this answer
Somebody downvoted this answer please explain! – Trufa Oct 18 '10 at 3:08

According to the PHP docs, they're the same.

share|improve this answer

In PHP, != and <> are equivalent, you can see more about them here: http://www.php.net/manual/en/language.operators.comparison.php

share|improve this answer

some languages do not know the != operator, instead they use <>

but in PHP you can use both

share|improve this answer

VB.NET use <> instead of !=

share|improve this answer

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.