如何打开目录并打开目录中的每个文件?

时间:2012-10-10 09:39:05

标签: php file directory

我正在尝试打开目录并打开目录中的每个文件。

这是我打开目录的代码;

$handle = opendir ('hoe7b_data');
while(false !== ($file = readdir($handle))){
echo "$file<br />";
}
closedir($handle);

我现在希望我的代码逐个打开每个文件。

非常感谢任何帮助。

3 个答案:

答案 0 :(得分:0)

<?php
if ($handle = opendir('.')) {
    while (false !== ($entry = readdir($handle))) {
        if ($entry != "." && $entry != "..") {
            $fileHandle = fopen($entry, "r");
            while (!feof($fileHandle)) {
                $fileContent = fgets($fileHandle);
                echo $fileContent;
            }
            fclose($fileHandle);
            echo "$entry\n";
        }
    }
    closedir($handle);
}
?>

答案 1 :(得分:0)

使用is_file检查它是否是文件,使用file_get_contents将内容读取为字符串。

$handle = opendir ('hoe7b_data');
while(false !== ($file = readdir($handle))){
  if (is_file($file)) {
    $file_content = file_get_contents($file);
    echo $file_content;
  }
}
closedir($handle);

答案 2 :(得分:0)

我确定你不想只输出任何东西......

$type = array("txt");
$fi = new FilesystemIterator(__DIR__, FilesystemIterator::SKIP_DOTS);
foreach ( $fi as $file ) {
    if (in_array($file->getExtension(), $type))
        echo file_get_contents($file);
}