if($a==$b && $b==$c){ //code} if($a==$b and $b==$c){ //code}小提示:&& 和 and 都是PHP语言里逻辑判断“且”,and的操作级别比&&的低。
if($a == $b and $==$c){ //code}