opendir函数如何在php怎么中使用

opendir函数如何在php怎么中使用

opendir函数如何在php怎么中使用?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

opendir()函数的作用是:打开目录句柄,如果该函数成功运行,将返回一组目录流(一组目录字符串),如果失败将返回错误[error],你可以在函数的最前面加上“@”来隐藏错误.

syntax语法:opendir(directory,context) parameter

参数:description

描述:directory required. specifies the directory to stream   

必要参数,指定目录对象,可选参数,指定需要处理的目录对象的context,这个context包括了一组选项,它可以对文本流的显示方式进行改变,实例代码如下:

代码如下:
<&#63;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); 


&#63;>

关于opendir函数如何在php怎么中使用问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注行业资讯频道了解更多相关知识。