0

我正在寻找一种方法来确定一个单词是否在一组字符中的某个位置。例如,如果单词“looking”在“hereisthewordim*looking*for”中

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

2 回答 2

2

您需要替换参数:

strpos("hereisthewordimlookingfor", "looking")
于 2012-04-27T17:37:23.173 回答
0

我想你正在寻找这个:

if(stristr("hereisthewordimlookingfor","looking")) {
    echo "true";
};
于 2012-04-27T17:38:52.237 回答