php opendir()函数
opendir() 函数用于打开目录句柄,以便随后与其他目录函数(如closedir(),readdir()和rewinddir())一起利用。
语法
opendir(path,context);
参数
● path:必需。规定要打开的目录路径。
● context:可选。规定目录句柄的环境。context 是可修正目录流的行为的一套选项。
返回值:成功则返回目录句柄资源。失落败则返回 FALSE。
缺点和非常:
● 如果路径不是合法目录,或者由于容许限定或文件系统缺点导致的目录不能打开,则抛出 E_WARNING 级别的缺点。
● 您可以通过在函数名称前添加 '@' 来隐蔽 opendir() 的缺点输出。
PHP 版本:4.0+
示例
<?php
// 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
以上便是php的opendir是什么意思?的详细内容,更多请关注其它干系文章!
更多技巧请《转发 + 关注》哦!