首页  >  文章  >  后端开发  >  如何扫描一个目录下的所有文件阿_PHP教程

如何扫描一个目录下的所有文件阿_PHP教程

WBOY
WBOY原创
2016-07-13 10:52:371055浏览

如何扫描一个目录下的所有文件阿

将一个目录下面的所有的html列出来
当作连接显示

// Note that !== did not exist until 4.0.0-RC2

if ($handle = opendir('/path/to/files')) {
    echo "Directory handle: $handlen";
    echo "Files:n";

    /* This is the correct way to loop over the directory. */
    while (false !== ($file = readdir($handle))) {
        echo "$filen";
    }

    /* This is the WRONG way to loop over the directory. */
    while ($file = readdir($handle)) {
        echo "$filen";
    }

    closedir($handle);
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632468.htmlTechArticle如何扫描一个目录下的所有文件阿 将一个目录下面的所有的 html 列出来 当作连接显示 ?php // Note that !== did not exist until 4.0.0-RC2 if ($handle = o...
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn