php operator <> - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:31:38Zhttp://stackoverflow.com/feeds/question/249312http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/249312/php-operator5php operator <>ocergynohtna2008-10-30T04:56:19Z2009-08-19T07:15:08Z
<p>can someone explain this one to me? a link to something in the php manual even?? i can't find anything:</p>
<pre><code>if ($_SERVER['SERVER_PORT'] <> 443) {
doSomething();
}
</code></pre>
http://stackoverflow.com/questions/249312/php-operator/249315#24931512Answer by CMS for php operator <>CMS2008-10-30T04:59:14Z2008-10-30T04:59:14Z<p>Same that !=, Not equal</p>
<pre><code>$a <> $b
</code></pre>
<p>Here is some reference: <a href="http://www.php.net/operators.comparison" rel="nofollow">PHP Comparison Operators</a></p>
http://stackoverflow.com/questions/249312/php-operator/249316#2493162Answer by PlacidBox for php operator <>PlacidBox2008-10-30T04:59:16Z2008-10-30T04:59:16Z<p>It's equivelent to !=</p>
<p><a href="http://au.php.net/operators.comparison" rel="nofollow">http://au.php.net/operators.comparison</a></p>
http://stackoverflow.com/questions/249312/php-operator/249317#2493172Answer by jeremy Ruten for php operator <>jeremy Ruten2008-10-30T04:59:31Z2008-10-30T04:59:31Z<p>It's another way of saying "not equal to" (the <code>!=</code> operator). I think of it as the "less than or greater than" operator which really just means "not equal to".</p>
http://stackoverflow.com/questions/249312/php-operator/249321#2493211Answer by indyfromoz for php operator <>indyfromoz2008-10-30T05:03:15Z2008-10-30T05:03:15Z<p><code>$_SERVER['SERVER_PORT']</code> gets the port used by the web server to serve HTTP requests. <code>$_SERVER['SERVER_PORT'] <> 443</code> checks if the port is not equal to 443 (the default HTTPS port) and if not, invokes <code>doSomething()</code> </p>
http://stackoverflow.com/questions/249312/php-operator/249336#2493360Answer by ocergynohtna for php operator <>ocergynohtna2008-10-30T05:13:41Z2008-10-30T05:13:41Z<p>good show! thanks to all that answered. :) loving stack overflow. :P</p>
http://stackoverflow.com/questions/249312/php-operator/249345#2493450Answer by eyelidlessness for php operator <>eyelidlessness2008-10-30T05:23:02Z2008-10-30T05:23:02Z<p>Note that <code><></code> behaves as <code>!=</code> even where <code><</code> and <code>></code> are not obvious comparison operators (eg <code>$str1 <> $str2</code>).</p>
http://stackoverflow.com/questions/249312/php-operator/249390#2493901Answer by Bob Somers for php operator <>Bob Somers2008-10-30T06:01:28Z2008-10-30T06:01:28Z<p>Although PHP is mostly based on C-style syntax, this is one of the weird things that comes from the BASIC-style syntax world.</p>
<p>Needless to say, I'd just use != and be consistent with it, as <> is really never used.</p>