Simple question, in PHP, is there anything difference between != and <> operators?
In the manual is states:
$a != $b Not equal TRUE if $a is not equal to $b.
$a <> $b Not equal TRUE if $a is not equal to $b.
Thanks!! I guess there are no huge differences but I'm curious :)
<>as an op for non-equality in php even though its allowed :-) – prodigitalson Nov 27 '10 at 23:54!=is probably more common... – Felix Kling Nov 27 '10 at 23:55<>reminds me of BASIC... – netcoder Nov 27 '10 at 23:56