这个运算符是什么<>用PHP表示?

时间:2012-07-14 00:33:09

标签: php

  

可能重复:
  Reference - What does this symbol mean in PHP?

'<>'意思?

if ($class->stuff <> 'specific') 

正在处理一个小项目并遇到一个奇怪的符号。

2 个答案:

答案 0 :(得分:3)

这意味着:

  

不同

,相当于!=

您可以看到table with all comparison operators here

答案 1 :(得分:0)

从字面上看,“小于或大于”,意思是“不等于”