1
loading 2016-11-15 18:31:25 +08:00 via Android
文本不大就 file open 到内存
文本大就调用 linux 命令 |
2
barbery 2016-11-15 19:09:24 +08:00
glob
|
3
m939594960 2016-11-15 21:28:55 +08:00
https://stackoverflow.com/questions/14301895/finding-files-with-a-certain-string 这个回答
··· $searchDir = './'; $searchString = 'a test'; $result = shell_exec('grep -Ri "'.$searchString.'" '.$searchDir); echo '<pre>'.$result.'</pre>'; ··· |
4
alex321 2016-11-15 22:15:08 +08:00
shell_exec
|
5
vibbow 2016-11-15 23:39:08 +08:00
https://gist.github.com/vibbow/a56d54fa08bb66501f852b6dfd2e9d49
5 年前写的代码, LZ 可以试着理解一下...... 基本上可以以磁盘极限速度搜索。 |