在实际开发中,经常会遇见需要判断字符串中是否包含指定的字符(串),在php中我们可以使用strpo函数来实现这一需求,具体代码如下:


$a = 'How are you?';
$b = 'are';
if (strpos($a, $b) !== false) {
    echo 'true';
}else{
    echo 'false';
}

strpos — 查找字符串首次出现的位置,返回 needle 在 haystack 中首次出现的数字位置。

mixed strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )

返回 needle 存在于 haystack 字符串起始的位置(独立于 offset)。同时注意字符串位置是从0开始,而不是从1开始的。

如果没找到 needle,将返回 FALSE。