文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>php目录操作函数

php目录操作函数

时间:2010-12-06  来源:网宗

代码
 1 <?php
2 $dir = "./";
3
4 // Open a known directory, and proceed to read its contents
5 if (is_dir($dir))
6 {
7 if ($dh = opendir($dir)) {
8 while (($file = readdir($dh)) !== false) {
9 echo "filename: $file : filetype: " . filetype($dir . $file) . "\n"."<br />";
10 }
11 closedir($dh);
12 }
13 }
14 ?>

输出结果:

filename: . : filetype: dir 
filename: .. : filetype: dir 
filename: cms : filetype: dir 
filename: index.php : filetype: file 
filename: index.php.bak : filetype: file 
filename: mvc : filetype: dir 
filename: shop : filetype: dir 
filename: shop.rar : filetype: file 
filename: xampp : filetype: dir 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载