网站地图    收藏   

主页 > php专栏 > php函数大全 >

php 目录遍历opendir函数 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] opendir()函数的作用是:打开目录句柄,如果该函数成功运行,将返回一组目录流(一组目录字符串),如果失败将返回错误[error],你可以在函数的最前面加上@来隐藏错误.syntax语法:opendir(directory...

php 目录遍历opendir函数

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

syntax语法:opendir(directory,context) parameter

参数:description

描述:directory required. specifies the directory to stream   

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

  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. //开源代码phpfensi.com 
  11. closedir($dh);  
  12. }  
  13. }  
  14. ?>

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论