opendir()
函数opendir的完整格式为“ Open Directory”,该函数opendir()
用于打开目录。
语法:
opendir(path,context);
参数:
path –是要打开的目录的路径(名称)。
上下文–它是一个可选参数;它定义了目录句柄的上下文(一组可以修改流行为的选项)。
返回值:
如果函数执行成功–如果函数执行失败,则返回目录句柄资源–返回“ FALSE”。
示例:PHP代码打开目录,读取其文件,然后关闭它
<?php $path = "/home"; //检查$path是否为目录 //然后,打开目录并读取其文件 if (is_dir($path)){ if ($dh = opendir($path)){ while (($file = readdir($dh)) !== false){ echo "File:" . $file . "<br/>"; } //关闭目录 closedir($dh); } } ?>
输出结果
File:.. File:main.php File:.
参考:PHPopendir()
函数