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.

can someone explain this one to me? a link to something in the php manual even?? i can't find anything:

if ($_SERVER['SERVER_PORT'] <> 443) {
    doSomething();
}
share|improve this question

6 Answers

up vote 15 down vote accepted

Same as !=, "Not equal"

false <> true // operator will evaluate expression as true
false != true // operator will evaluate expression as true

Here is some reference: PHP Comparison Operators

share|improve this answer
Beaten by 2 seconds! – PlacidBox Oct 30 '08 at 4:59

It's another way of saying "not equal to" (the != operator). I think of it as the "less than or greater than" operator which really just means "not equal to".

share|improve this answer

It's equivelent to !=

http://au.php.net/operators.comparison

share|improve this answer

$_SERVER['SERVER_PORT'] gets the port used by the web server to serve HTTP requests. $_SERVER['SERVER_PORT'] <> 443 checks if the port is not equal to 443 (the default HTTPS port) and if not, invokes doSomething()

share|improve this answer

Although PHP is mostly based on C-style syntax, this is one of the weird things that comes from the BASIC-style syntax world.

Needless to say, I'd just use != and be consistent with it, as <> is really never used.

share|improve this answer

Note that <> behaves as != even where < and > are not obvious comparison operators (eg $str1 <> $str2).

share|improve this answer
Why < and > are not "obvious comparison operators" for strings? – PhiLho Oct 30 '08 at 6:46
What the hell do they compare? As far as I can tell, they compare the "value" (alphabetically, a < b) of the strings. I can't imagine a use case for that. – eyelidlessness Oct 30 '08 at 6:54
2  
@PhiLho Strings are not often thought of as less than or greater than each other, unless you're comparing the length of the string. This is where most of the confusion arises. – orokusaki Feb 23 '10 at 18:50
@orokusaki: Really? I wonder how you sort strings then... – PhiLho Feb 24 '10 at 17:58
@PhiLho I'm speaking in respects to comparison operators, not sorting algorithms. – orokusaki Feb 25 '10 at 1:53
show 2 more comments

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.