欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP 遍历XP文件夹下所有文件

程序员文章站 2022-10-06 08:31:31
复制代码 代码如下:...
复制代码 代码如下:

<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);
?>