I just saw this "<>" in someones source code and honestly I've never seen someone use that to replace "!="
Example:
if($a <> $b)
vs
if($a != $b)
Are there advantages or disadvantages to using <> ? They are doing it to compare an array... Still not sure if that means anything.
Cheers!