php opendir 函数与opendir语法

opendir语法:opendir(path,context)

目录,功能说明:打开目录句柄,opendir() 函数打开一个目录句柄,则该函数返回一个目录流,否则返回false.来看个opendir列出目录下所有文件实例,代码如下:

  1. $dirs ='./';//指定当前上当
  2. if( is_dir( $dirs ) )
  3. {
  4. $hanld = opendir($dirs);
  5. while (($file = readdir($hanld)) !== false)
  6. {
  7. echo "文件名: " . $file . "<br />";
  8. }
  9. closedir($hanld);
  10. }
  11. else
  12. {
  13. echo '不是目录';
  14. }
  15. /*
  16. 输出结果
  17. 文件名:a
  18. 文件名:b
  19. 文件名:www.phpfensi.com
  20. */

提示和注释

注释:从 PHP 5.0.0 开始,path 参数支持 ftp:// URL wrapper

注释:在 PHP 4.3.0 中,path 参数可以是任何支持目录列表的 URL,不过在 PHP 4 中只有 file:// URL wrapper 支持此功能.