vote up 3 vote down star

can anyone tell me what this operator means exactly? is it the same as != (not equal)??

$foo = 'text';

if($foo <> 'photo') {
    echo 'foo';
} else {
    echo 'bar';
}
flag

36% accept rate
Duplicate of: stackoverflow.com/questions/249312/… – CMS Feb 26 at 7:47
You asked the same thing 4 months ago??? – Mike B Feb 27 at 16:08

3 Answers

vote up 9 vote down check

< <= > >= <> have a slightly higher precedence then == != === !== in the order of operations. Aside from the difference in precedence <> and != have the same meaning.

P.S. You probably should never write code that depends on such a minute difference in the order of operations.

link|flag
agreed. and thanks to you all. :) – ocergynohtna Feb 26 at 7:04
Your welcome. :D – invenetix Feb 26 at 7:15
vote up 2 vote down

That would be correct. It's pretty universal between languages. I usually use that method in my MSSQL queries/stored procedures.

PHP: Comparison Operators

link|flag
vote up 0 vote down

Yes, it's the same as != (see manual)

link|flag

Your Answer

Get an OpenID
or

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