PHP dir() 函數(shù)
PHP dir() 函數(shù)
實例
使用 dir() 函數(shù):
<?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();
?>
結(jié)果:
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() 函數(shù)返回 Directory 類的實例。該函數(shù)用于讀取一個目錄,包含如下:
- 給定的要打開的目錄
- dir() 的 handle 和 path 兩個屬性是可用的
- handle 和 path 屬性有三個方法:read()、rewind() 和 close()
語法
dir(directory,context);
參數(shù) | 描述 |
---|---|
directory | 必需。規(guī)定要打開的目錄。 |
context | 可選。 |
技術(shù)細節(jié)
返回值: | 返回 Directory 類的實例。失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4.0+ |

相關(guān)文章
- PHP $_GET 變量
- PHP date() 函數(shù)
- PHP Secure E-mails
- PHP array_chunk() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP end() 函數(shù)
- PHP in_array() 函數(shù)
- PHP krsort() 函數(shù)
- PHP ksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Libxml 函數(shù)
- PHP PDO