php中全等于===和等于==的区别例子如下:$a=strpos("host","h");//如果有h,返回h所在的位置,本例返回0,如果没有则返回falseif($a===false){ echo "没有h";}else{ echo "有h";}