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

时间:2015-11-01  来源:安卓教程  阅读:

将一个目录下面的所有的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);
}
?>

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

http://m.bbyears.com/shoujikaifa/19180.html

推荐访问:
相关阅读 猜你喜欢
本类排行 本类最新