php operator <> - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:31:38Z http://stackoverflow.com/feeds/question/249312 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249312/php-operator 5 php operator <> ocergynohtna 2008-10-30T04:56:19Z 2009-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'] &lt;&gt; 443) { doSomething(); } </code></pre> http://stackoverflow.com/questions/249312/php-operator/249315#249315 12 Answer by CMS for php operator <> CMS 2008-10-30T04:59:14Z 2008-10-30T04:59:14Z <p>Same that !=, Not equal</p> <pre><code>$a &lt;&gt; $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#249316 2 Answer by PlacidBox for php operator <> PlacidBox 2008-10-30T04:59:16Z 2008-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#249317 2 Answer by jeremy Ruten for php operator <> jeremy Ruten 2008-10-30T04:59:31Z 2008-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#249321 1 Answer by indyfromoz for php operator <> indyfromoz 2008-10-30T05:03:15Z 2008-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'] &lt;&gt; 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#249336 0 Answer by ocergynohtna for php operator <> ocergynohtna 2008-10-30T05:13:41Z 2008-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#249345 0 Answer by eyelidlessness for php operator <> eyelidlessness 2008-10-30T05:23:02Z 2008-10-30T05:23:02Z <p>Note that <code>&lt;&gt;</code> behaves as <code>!=</code> even where <code>&lt;</code> and <code>&gt;</code> are not obvious comparison operators (eg <code>$str1 &lt;&gt; $str2</code>).</p> http://stackoverflow.com/questions/249312/php-operator/249390#249390 1 Answer by Bob Somers for php operator <> Bob Somers 2008-10-30T06:01:28Z 2008-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 &lt;> is really never used.</p>