标签: php
PHP中<>和!=之间的区别是什么?
<>
!=
<?php $a = 1; $b = 2; //this is true if ($a <> $b) { echo "Yes!"; } // also this is true if ($a != $b) { echo "Yes!"; }
感谢。 :)
答案 0 :(得分:2)
没有区别,两个运营商都完全的目的相同。