在一组字符PHP中查找单词

时间:2012-04-27 17:28:57

标签: php string find word strpos

我正在寻找一种方法来查明某个单词是否出现在一组字符中。例如,如果单词“looking”在“hereisthewordim * looking * for”

if( strpos("looking", "hereisthewordimlookingfor")  !== false) {
 echo "true";
}

2 个答案:

答案 0 :(得分:2)

您需要替换参数:

strpos("hereisthewordimlookingfor", "looking")

答案 1 :(得分:0)

我认为你正在寻找这个:

if(stristr("hereisthewordimlookingfor","looking")) {
    echo "true";
};