PHP运算符<>
这个问题在这里已经有了答案:
与!=相同,“不相等”
false <> true // operator will evaluate expression as true
false != true // operator will evaluate expression as true
这里有一些参考:PHP比较运算符
这是说“不等于”( !=
运算符)的另一种方式。 我认为它是“小于或大于”的操作符,其实仅仅意味着“不等于”。
这相当于!=
:
http://au.php.net/operators.comparison
链接地址: http://www.djcxy.com/p/1807.html
上一篇: PHP operator <>