如何使用php搜索文本if($ text contains“Prépresse”)

时间:2016-01-18 11:00:05

标签: php strstr

我的字符串包含Prépresse这个单词,但我这样做是不行的:

if(strstr($text,'Prépresse')){

echo'OK';}

但没有工作,因为我有口音é我该如何解决

我调用了我的功能,但没有为我工作,我需要获得两个参数之间的字符串,所以我的功能:

public function get_string_between($string,$start,$end){

        $string ="".$string;
        $ini=strpos($string,$start);
        if($ini==0)return false;
        $ini+=strlen($start);
        $len=strpos($string,$end,$ini)-$ini;
        return substr($string,$ini,$len);


    }

提前致谢

1 个答案:

答案 0 :(得分:0)

您的解决方案是strpos()功能。

$text = "Prépresse abcd test";

if (strpos($text,'Prépresse') !== false) {
    echo 'true';
}

<强>输出: -

true