在文件夹中的所有文件中搜索字符串

在文件夹中的所有文件中搜索字符串,第1张

文件夹中的所有文件中搜索字符串

您的两个选项是DirectoryIterator或glob:

$string = 'something';$dir = new DirectoryIterator('some_dir');foreach ($dir as $file) {    $content = file_get_contents($file->getPathname());    if (strpos($content, $string) !== false) {        // Bingo    }}$dir = 'some_dir';foreach (glob("$dir/*") as $file) {    $content = file_get_contents("$dir/$file");    if (strpos($content, $string) !== false) {        // Bingo    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5009819.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存