PHP查找字符串中是否包含多個指定字符串


我有一個字符串,需要檢查幾個字符。我可以用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 "包含指定字符串少於兩個";
}

完美。。。。。。。。。。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM