我正在寻找一种方法来查明某个单词是否出现在一组字符中。例如,如果单词“looking”在“hereisthewordim * looking * for”
中if( strpos("looking", "hereisthewordimlookingfor") !== false) {
echo "true";
}
答案 0 :(得分:2)
您需要替换参数:
strpos("hereisthewordimlookingfor", "looking")
答案 1 :(得分:0)
我认为你正在寻找这个:
if(stristr("hereisthewordimlookingfor","looking")) {
echo "true";
};