我有一個字符串,需要檢查幾個字符。我可以用strpos();做到這一點。但是在這種情況下,我將需要多次使用strpos();。像這樣的東西:
if(
strpos($str, "-") === false &&
strpos($str, "_") === false &&
strpos($str, "@") === false &&
strpos($str, "/") === false &&
strpos($str, "'") === false &&
strpos($str, "]") === false &&
strpos($str, "[") === false &&
顯然是不行的,於是找到了這個方法
//被查找的字符串
$string = '中文,string,21565489fewwords';
//指定的字符串
$arr = ['中文','string', 'few', 'words'];
preg_match_all('#('.implode('|', $arr).')#', $string, $wordsFound);
//獲取匹配到的字符串,array_unique()函數去重。如需獲取總共出現次數,則不需要去重
$wordsFound = array_unique($wordsFound[0]);
if(count($wordsFound) >= 2){
echo "包含指定字符串超過兩個";
}else{
echo "包含指定字符串少於兩個";
}
完美。。。。。。。。。。
