PHP opendir() 函数
PHP opendir() 函数用于打开目录句柄
(php4,php5,php7)
函数原型
opendir( **path,context** );
参数列表
参数 | 描述 |
---|---|
path | 必需。规定要打开的目录路径 |
context | 可选。规定目录句柄的环境 context 是可修改目录流的行为的一套选项 |
返回值
成功则返回目录句柄资源
失败则返回 FALSE
如果路径不是合法目录,或者由于许可限制或文件系统错误导致的目录不能打开,则抛出 E_WARNING 级别的错误
我们可以通过在函数名称前添加 '@' 来隐藏 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); } }
运行以上 PHP 范例,输出结果如下
filename: cat.gif filename: dog.gif filename: horse.gif
更新日志
更新日志 |
---|
PHP 5.0:path 参数支持ftp://URL 封装协议 |