我试图使用PHP从特定文件夹中获取不同文本文件中的所有文本。我已经知道如何为文件夹中的所有图像执行此操作,但现在我需要一种方法来对文本文件执行相同的操作。这是我到目前为止的代码。
<?php
$dir = 'Nieuws';
$file_display = ['txt'];
if (file_exists($dir) == false) {
return ["Directory \'', $dir, '\' not found!"];
} else {
$dir_contents = scandir($dir);
foreach ($dir_contents as $file) {
echo $file;
echo file_get_contents($file);
}
}
?>