PHP 遍历XP文件夹下所有文件
程序员文章站
2022-04-28 15:49:13
复制代码 代码如下:...
复制代码 代码如下:
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<?php
//php遍历文件夹下所有文件
$handle=opendir('c:\\'); //我要遍历c盘的文件
echo "目录 handle: $handle <br/>";
echo "文件: <br/>";
while ($file =readdir($handle)) {
$file=iconv('gb2312','utf-8',$file);//将xp的gbk编码转成utf8
echo "$file <br/>"; //输出文件名
}
closedir($handle);
?>
上一篇: 一次MYSQL 服务器性能优化之旅
下一篇: android从资源文件中读取文件流显示