如何检查txt文件是否包含单词

时间:2016-07-28 18:24:08

标签: php

<?php           
$a = 'grzn.txt';
if (strpos($a, 'word') !== false) 
{
echo 'Found';
}
?>

我如何检查“word”是否在文本文件“grzn.txt”中? &安培;感谢

1 个答案:

答案 0 :(得分:2)

您应该在文本内容中搜索,而不是在文件名中搜索。
使用file_get_contents功能:

$a = 'grzn.txt';
if (strpos(file_get_contents($a), 'word') !== false) echo 'found';

http://php.net/manual/en/function.file-get-contents.php