我想检查字符串是否存在于另一个字符串
中即使字符串采用以下格式: 的是, 是, 是, 是, 是
$str = "how aRe you doing";
if (strpos($str,'are') !== false)
{
echo 'true';
}
答案 0 :(得分:1)
使用stripos()
代替strpos()
。
int stripos(string $ main_string,string $ substring [,int $ offset = 0])
答案 1 :(得分:1)
您可以使用具有strtolower功能的strpos功能
$str = "how are you doing";
$ndl = 'ArE';
if (strpos(strtolower($str),strtolower($ndl))) {
echo "true";
}else{
echo "false";
}
答案 2 :(得分:0)
$str = "how aRe you doing";
if (strpos(strtolower($str),'are') !== false)
{
echo 'true';
}