例子如下:
<?php
$a=strpos("host","h");//如果有h,返回h所在的位置,本例返回0,如果没有则返回false
if($a===false){
echo "没有h";
}else{
echo "有h";
}