目录

PHP dir() 函数

❮ PHP 目录参考

示例

使用 dir() 函数:

<?php
$d = dir(getcwd());

echo "Handle: " . $d->handle . "<br>";
echo "Path: " . $d->path . "<br>";

while (($file = $d->read()) !== false){
  echo "filename: " . $file . "<br>";
}
$d->close();
?>

结果:

Handle: Resource id #2
Path: /etc/php
filename: .
filename: ..
filename: ajax.gif
filename: books.xml
filename: cdcatalog.xml
filename: cd_catalog.xml
filename: default.html
filename: demo_array.html
filename: demo_array.htm
...
...
...


定义和用法

dir() 函数返回 Directory 类的实例。该函数用于读取一个目录,其中包括以下内容:

  • 给定的目录被打开
  • dir()的handle和path这两个属性可用
  • 句柄和路径属性都有三个方法:read()、rewind() 和 close()

语法

dir( directory, context)

参数值

Parameter Description
directory Required. Specifies the directory to open
context Optional.


技术细节

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

❮ PHP 目录参考