当前位置:Gxlcms > PHP教程 > php目录遍历opendir()函数的用法

php目录遍历opendir()函数的用法

时间:2021-07-01 10:21:17 帮助过:2人阅读

opendir() 函数打开目录句柄。该函数成功则返回目录句柄资源。失败则返回 FALSE。如果路径不是合法目录,或者由于许可限制或文件系统错误导致的目录不能打开,则抛出 E_WARNING 级别的错误。您可以通过在函数名称前添加 '@' 来隐藏 opendir() 的错误输出。

opendir() 函数实例,代码如下:

<?php  
$dir = "./"; 
 
// open a known directory, and proceed to read its contents  
if (is_dir($dir))  
{  
if ($dh = opendir($dir)) {  
while (($file = readdir($dh)) !== false) {  
echo "filename: $file : filetype: " . filetype($dir . $file) . "n"."<br />";  
}
closedir($dh);  
}  
}  
?>

以上就是php目录遍历opendir()函数的用法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行