vote up 5 vote down star

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();
}
flag

36% accept rate

7 Answers

vote up 12 vote down

Same that !=, Not equal

$a <> $b

Here is some reference: PHP Comparison Operators

link|flag
Beaten by 2 seconds! – PlacidBox Oct 30 '08 at 4:59
vote up 2 vote down

It's equivelent to !=

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

link|flag
vote up 2 vote down

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".

link|flag
vote up 1 vote down

$_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()

link|flag
vote up 0 vote down

good show! thanks to all that answered. :) loving stack overflow. :P

link|flag
1  
I understand your enthusiasm, but it's discouraged to post an answer to your own question (or any question) that's not an answer, but a comment. If you wish to compliment someone for a good answer, upvote, give a positive comment, or (best of all) accept their answer as correct. See the FAQ (stackoverflow.com/faq) for more information. Not trying to get on your back or anything, just trying to encourage you in what this site considers the "right direction." :) – Chris Lutz Aug 19 at 7:20
vote up 0 vote down

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

link|flag
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
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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