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?
|
Normally I would use After that, I went to search on Google, what's the difference between Anyone care to explain? |
||||
|
|
|||
|
There is no difference. Some languages use <> and some use !=, and some like PHP allow both. |
|||
|
|
|
According to the PHP docs, they're the same. |
|||
|
|
|
In PHP, != and <> are equivalent, you can see more about them here: http://www.php.net/manual/en/language.operators.comparison.php |
|||
|
|
|
some languages do not know the != operator, instead they use <> but in PHP you can use both |
|||
|
|
!==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