最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
如何扫描一个目录下的所有文件阿
时间:2022-07-02 10:36:25 编辑:袖梨 来源:一聚教程网
将一个目录下面的所有的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);
}
?>
相关文章
- Ripple寻求美国银行牌照——现在是购买加密货币并囤积XRP的好时机吗? 07-04
- Fruits Token(FRTS币)不合法 07-04
- 如果全世界都被代币化且XRP捕获其1%的价值,XRP的价格将是 07-04
- 吾今有世家开局特性选择技巧-吾今有世家开局特性解析 07-04
- PS后期使用滤镜工具将照片处理成柔焦效果图像教程 07-04
- 大通智能链(DTC币)在中国禁止 07-04