PHP dir() 函数
PHP dir() 函数
实例
使用 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();
?>
$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
...
...
...
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 两个属性是可用的
- handle 和 path 属性有三个方法:read()、rewind() 和 close()
语法
dir(directory,context);
参数 | 描述 |
---|---|
directory | 必需。规定要打开的目录。 |
context | 可选。 |
技术细节
返回值: | 返回 Directory 类的实例。失败则返回 FALSE。 |
---|---|
PHP 版本: | 4.0+ |
PHP Directory 参考手册
相关文章
- PHP $_GET 变量
- PHP date() 函数
- PHP Secure E-mails
- PHP array_chunk() 函数
- PHP array_flip() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_merge() 函数
- PHP array_udiff_assoc() 函数
- PHP array_walk_recursive() 函数
- PHP asort() 函数
- PHP end() 函数
- PHP in_array() 函数
- PHP krsort() 函数
- PHP ksort() 函数
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP 5 Directory 函数
- PHP Libxml 函数
- PHP PDO