在fopen之后,我可以在PHP中搜索关键字吗?

时间:2010-01-19 03:58:31

标签: php stream fopen

如果我在文件上使用fopen,是否有办法扫描文件以查找某个关键字的字节数?如果没有,我该怎么做?

2 个答案:

答案 0 :(得分:0)

单程,

$data = file_get_contents("file");
print strpos("$data","myword");

答案 1 :(得分:0)

你说这个问题的方式让你觉得你正在寻找除基本字符串操作之外的东西。如果这就是你所说的 - 不,字符串函数是你唯一的选择。

只需像往常一样获取内容。

$content = fread($file_handle, filesize($filename));
$index = strpos($content, 'keyword');