PHP如果不在字符串中
这个问题在这里已经有了答案:
我总是使用这个:
if (stristr($string, "string")) {
//String exists within $string
}else{
//String does not exist
}
http://www.php.net/stristr
尝试这个:
if(strpos($string, 'String') !== false) {
//string exist
}
else{
//string not exist
}
链接地址: http://www.djcxy.com/p/13121.html
上一篇: PHP if not in string