-3

我的服务器中有一个数据目录,并且有很多文本文件,例如

text1.txt
abc.txt
def.txt

现在我需要从每个文件中读取包含特定单词(如(emp_name))的特定行,并在我的 php 项目中回显整行。如何做到这一点任何帮助表示感谢提前感谢。

4

2 回答 2

2

你的方向应该是这样的:

1. firstly open the file , through fopen()
2. then by file_get_contents() or fread() to get the content 
3. then search for the desired word in the file

编辑:
这样做:

<?php
$data = file_get_contents("input.txt"); //read the file
if(strpos($data,"str_to_find")==false){ //check if string exists in file
echo "str not found";
}
else 
echo "str found";

?>
于 2013-02-03T07:09:20.910 回答
0

PHP代码:

$myFile = "testFile.txt";
$fh = fopen($myFile, 'r')

如果你想逐字阅读

看看这个_

也是

于 2013-02-03T07:07:54.643 回答