0

Possible Duplicate:
Reference - What does this symbol mean in PHP?

What does the '<>' mean?

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

Just working on a little project and came across a strange symbol.

4

2 に答える 2

3

It means:

different

and is equivalent to !=

You can see a table with all comparison operators here

于 2012-07-14T00:34:43.220 に答える
0

文字通り、「より小さいまたはより大きい」、「等しくない」を意味します

于 2012-07-14T00:36:26.520 に答える