使用file_get_html遍历文件夹的内容?

时间:2018-06-21 15:45:29

标签: php loops

是否可以使用file_get_html遍历每个文件的文件夹?

我当前正在使用以下内容:

$html = file_get_html('http://example.local/folder/file1.html');

是否可以设置文件夹的路径,然后循环遍历文件夹的内容?

$html = file_get_html('http://example.local/folder/');

文件夹中的文件可以命名为任何名称(没有设置命名约定!),但它们始终是html文件。

我正在使用simple_html_dom.php来获取HTML。

1 个答案:

答案 0 :(得分:1)

这将是一般想法:

$source = '/some/local/folder/';
foreach (new DirectoryIterator($source) as $fileInfo) {
    if($fileInfo->isDot()) continue;
    $html = file_get_contents($source.$fileInfo->getFilename());
    //do stuff with $html
}