可以使用PHP的scandir
函數(shù)來(lái)循環(huán)讀取文件夾里的文件。以下是一個(gè)簡(jiǎn)單的示例代碼:
$dir = '/path/to/directory'; // 文件夾路徑
// 掃描文件夾并返回文件名數(shù)組
$files = scandir($dir);
// 循環(huán)遍歷文件數(shù)組
foreach ($files as $file) {
// 忽略當(dāng)前目錄和上一級(jí)目錄
if ($file == '.' || $file == '..') {
continue;
}
// 輸出文件名
echo $file . "\n";
}
在上面的示例中,首先使用scandir
函數(shù)掃描指定的文件夾,然后循環(huán)遍歷返回的文件名數(shù)組,排除當(dāng)前目錄.
和上一級(jí)目錄..
,并輸出文件名。您可以根據(jù)需要進(jìn)一步處理這些文件,例如讀取文件內(nèi)容或其他操作。