PHP:在字符串中搜索字符串

时间:2012-07-25 01:12:36

标签: php string replace find

我想检查另一个字符串中是否存在字符串,然后执行相应的操作。这样做的最佳方式是什么?

例如;如果字符串'europe'出现在'europeisthebest'中,那就做点什么吧。

if ( isIn('europe', 'europeisthebest') == true){
  //do something
}

非常感谢你!我很感谢你所有的答案和花在帮助上的时间。

2 个答案:

答案 0 :(得分:5)

您正在寻找strstr()(区分大小写),stristr()(不区分大小写)或strpos()

if (stristr('europeisthebest', 'europe')){
  // do something
}

答案 1 :(得分:0)

如果你想知道字符串中子字符串的位置,你也可以使用strpos()函数