文章详情

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

php 目录遍历opendir函数

时间:2010-12-30  来源:秩名

opendir()函数的作用是:打开目录句柄。

  如果该函数成功运行,将返回一组目录流(一组目录字符串),如果失败将返回错误[error]。你可以在函数的最前面加上“@”来隐藏错误。   

syntax   语法   opendir(directory,context)   parameter   

参数 description   
描述   directory required. specifies the directory to stream   
必要参数。指定目录对象   

 

 可选参数。指定需要处理的目录对象的context。这个context包括了一组选项,它可以对文本流的显示方式进行改变

<?php   $dir = "./";   // open a known directory, and proceed to read its contents   if (is_dir($dir))   {   if ($dh = opendir($dir)) {   while (($file = readdir($dh)) !== false) {   echo "filename: $file : filetype: " . filetype($dir . $file) . "n"."<br />";   }   closedir($dh);   }   }   ?>  

 

标签分类:

相关阅读 更多 +
排行榜 更多 +
弓箭手战士酷跑

弓箭手战士酷跑

飞行射击 下载
三角洲行动全面战场攀升A点进攻指南

三角洲行动全面战场攀升A点进攻指南

飞行射击 下载
僵尸射手世界大战

僵尸射手世界大战

飞行射击 下载