例
使用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.asp
filename: demo_array.htm
...
...
...
定義和用法
在dir()函數返回目錄類的一個實例。 此功能用於讀取目錄,它包括以下內容:
- 給定的目錄被打開
- 這兩個特性處理和路徑dir()可用
- 兩個手柄和路徑屬性有三種方法: read() rewind()和close()
句法
dir( directory,context );
參數 | 描述 |
---|---|
directory | 需要。 指定打開的目錄 |
context | 可選的。 |
技術細節
返回值: | 返回目錄類的一個實例。 FALSE失敗 |
---|---|
PHP版本: | 4.0+ |
<PHP目錄參考