php读取指定目录下的所有文件
时间:2021-07-01 10:21:17
帮助过:3人阅读
- $dir = "PUT_PATH_TO_DIR_HERE";
- // Open a known directory, and proceed to read its contents
- if (is_dir($dir)) {
- if ($dh = opendir($dir)) {
- while (($file = readdir($dh)) !== false) {
- echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
- }
- closedir($dh);
- }
- }
- ?>
|
目录下, php