PHP opendir() 函数
PHP opendir() 函数
实例
打开一个目录,读取它的内容,然后关闭:
<?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);
}
}
?>
结果:
filename: cat.gif
filename: dog.gif
filename: horse.gif
filename: dog.gif
filename: horse.gif
定义和用法
opendir() 函数打开目录句柄。
语法
opendir(path,context);
参数 | 描述 |
---|---|
path | 必需。规定要打开的目录路径。 |
context | 可选。规定目录句柄的环境。context 是可修改目录流的行为的一套选项。 |
技术细节
返回值: | 成功则返回目录句柄资源。失败则返回 FALSE。如果路径不是合法目录,或者由于许可限制或文件系统错误导致的目录不能打开,则抛出 E_WARNING 级别的错误。您可以通过在函数名称前添加 '@' 来隐藏 opendir() 的错误输出。 |
---|---|
PHP 版本: | 4.0+ |
PHP 更新日志: | PHP 5.0:path 参数支持 ftp:// URL 封装协议。 |
PHP Directory 参考手册
相关文章
- PHP 简介
- PHP 语法
- PHP echo 和 print 语句
- PHP 常量
- PHP 运算符
- PHP For 循环
- PHP 过滤器
- PHP 高级过滤器
- PHP array_key_last() 函数
- PHP array_keys() 函数
- PHP array_push() 函数
- PHP array_replace_recursive() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_unique() 函数
- PHP array_values() 函数
- PHP asort() 函数
- PHP usort() 函数
- PHP HTTP 函数
- PHP Mail 函数
- PHP PDO