我正在开发一个程序,该程序读取文本文件,查找单词,然后根据是否找到该单词显示不同的结果。
有没有办法忽略大写字母?因此,例如当我正在寻找一个单词响应时,它会抓住Respond,response,RESPOND,ReSpOnd等。
代码是:
<?php
//1 email;
$file = "1.txt";
$fh = fopen($file, 'r');
$theData = fread($fh, filesize($file));
fclose($fh);
echo "<strong>Email 1 - correct outcome: reply needed <br /></strong>";
if (preg_match("/dota(.*?)dota1/s", $theData, $matches))
{
echo $matches[1]."<br />";
}
$respond = 'Respond';
$pos = strpos($matches[1], $respond);
if ($pos === false) {
echo "Reply not needed";
} else {
echo "Reply needed";
}
echo "<HR>";
?>
谢谢!