PHP dir() 函数

实例

使用 dir() 函数:

  1. <?php
  2. $d = dir(getcwd());
  3.  
  4. echo "Handle: " . $d->handle . "<br>";
  5. echo "Path: " . $d->path . "<br>";
  6.  
  7. while (($file = $d->read()) !== false){
  8. echo "filename: " . $file . "<br>";
  9. }
  10. $d->close();
  11. ?>

结果:

  1. Handle: Resource id #2
  2. Path: /etc/php
  3. filename: .
  4. filename: ..
  5. filename: ajax.gif
  6. filename: books.xml
  7. filename: cdcatalog.xml
  8. filename: cd_catalog.xml
  9. filename: default.php
  10. filename: demo_array.php
  11. filename: demo_array.htm
  12. ...
  13. ...
  14. ...

定义和用法

dir() 函数返回 Directory 类的实例。该函数用于读取一个目录,包含如下: 给定的要打开的目录 dir() 的 handle 和 path 两个属性是可用的 handle 和 path 属性有三个方法:read()、rewind() 和 close()

语法

  1. dir(directory,context);
参数 描述
directory 必需。规定要打开的目录。
context 可选。

技术细节

返回值: 返回 Directory 类的实例。若失败则返回 FALSE。
PHP 版本: 4.0+