Heim >Backend-Entwicklung >PHP-Tutorial >php读取指定目录下的所有文件

php读取指定目录下的所有文件

WBOY
WBOYOriginal
2016-07-25 08:45:461012Durchsuche
  1. $dir = "PUT_PATH_TO_DIR_HERE";
  2. // Open a known directory, and proceed to read its contents
  3. if (is_dir($dir)) {
  4. if ($dh = opendir($dir)) {
  5. while (($file = readdir($dh)) !== false) {
  6. echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
  7. }
  8. closedir($dh);
  9. }
  10. }
  11. ?>
复制代码

目录下, php


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn