欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-05 17:10:15
...
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()函数的用法的详细内容,更多请关注其它相关文章!