php目录遍历opendir()函数的用法
程序员文章站
2022-03-09 11:59:13
...
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()函数的用法的详细内容,更多请关注其它相关文章!
下一篇: PHP目录处理—打开/关闭目录