试编写代码如下:
<?php$dir="D:/WWW/ftp" //指定的路径
$sitepath = 'http://localhost/ftp/'
if (false != ($handle = opendir ( $dir ))) {
echo "$dir 目录下的文件列表型谈:<BR/>"
$i = 0
while (false !== ($file = readdir($handle))) {
扮缺 if ($file != "." && $file != ".." && !is_dir($dir.'/'.$file)) {
echo '厅租辩<a href="' . $sitepath . $file . '">'.$file. '</a><br/>'
}
}
//关闭句柄
closedir($handle)
}
?>
代码中需要提示的是:
如果是运行于互联网上,需要考虑文件的访问安全性。
运行截图:
遍历目樱橡录下文件,首先获取该目录下的所脊茄旁有文件名。
$folder = './folder/'foreach (scandir($folder) AS $value) {
if ($value == '.' OR $value == '..') continue
echo '文件名 : ' . $value . "纳告\n"
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)