PHP readdir() 函數(shù)
PHP readdir() 函數(shù)
實例
打開一個目錄,讀取它的內(nèi)容,然后關(guān)閉:
<?php
$dir = "/images/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>
$dir = "/images/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>
結(jié)果:
filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: dog.gif
filename: horse.gif
定義和用法
readdir() 函數(shù)返回目錄中下一個文件的文件名。
語法
readdir(dir_handle);
參數(shù) | 描述 |
---|---|
dir_handle | 可選。指定之前由 opendir() 打開的目錄句柄資源。如果該參數(shù)未指定,則使用最后一個由 opendir() 打開的鏈接。 |
技術(shù)細(xì)節(jié)
返回值: | 成功則返回文件名,失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4.0+ |

相關(guān)文章
- PHP 數(shù)據(jù)類型
- PHP 運算符
- PHP 包含文件 include 和 require 語句
- PHP array_filter() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_values() 函數(shù)
- PHP current() 函數(shù)
- PHP extract() 函數(shù)
- PHP prev() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP cURL 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)