php目录遍历函数opendir用法实例_php技巧
程序员文章站
2022-04-07 15:22:34
...
本文实例讲述了php目录遍历函数opendir用法。分享给大家供大家参考。具体分析如下:
opendir()函数的作用是:打开目录句柄,如果该函数成功运行,将返回一组目录流(一组目录字符串),如果失败将返回错误[error],你可以在函数的最前面加上“@”来隐藏错误.
syntax语法:opendir(directory,context) parameter
参数:description
描述:directory required. specifies the directory to stream
必要参数,指定目录对象,可选参数,指定需要处理的目录对象的context,这个context包括了一组选项,它可以对文本流的显示方式进行改变,实例代码如下:
复制代码 代码如下:
$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"."
";
}
closedir($dh);
}
}
?>
// 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"."
";
}
closedir($dh);
}
}
?>
希望本文所述对大家的PHP程序设计有所帮助。
上一篇: php中json_encode中文编码问题分析_php技巧
下一篇: 菜单点击事件实例代码
推荐阅读
-
PHP函数func_num_args用法实例分析_php技巧
-
php遍历目录下所有文件的函数
-
php分割合并两个字符串的函数实例_php技巧
-
smarty内置函数{loteral}、{ldelim}和{rdelim}用法实例_PHP
-
PHP 将数组打乱 shuffle函数的用法及简单实例,打乱shuffle
-
PHP采用自定义函数实现遍历目录下所有文件的方法_PHP
-
PHP curl_setopt()函数实例代码与参数分析_php技巧
-
php文件压缩之PHPZip类用法实例_php技巧
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
php获得网站访问统计信息类Compete API用法实例_php技巧