php目录遍历函数opendir用法实例
发布:smiling 来源: PHP粉丝网 添加日期:2021-04-27 19:12:43 浏览: 评论:0
这篇文章主要介绍了php目录遍历函数opendir用法,以实例形式详细分析了opendir原理与用法,是PHP进行目录操作的一个重要函数,需要的朋友可以参考下
本文实例讲述了php目录遍历函数opendir用法。分享给大家供大家参考。具体分析如下:
opendir()函数的作用是:打开目录句柄,如果该函数成功运行,将返回一组目录流(一组目录字符串),如果失败将返回错误[error],你可以在函数的最前面加上“@”来隐藏错误.
syntax语法:opendir(directory,context) parameter
参数:description
描述:directory required. specifies the directory to stream
必要参数,指定目录对象,可选参数,指定需要处理的目录对象的context,这个context包括了一组选项,它可以对文本流的显示方式进行改变,实例代码如下:
- <?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程序设计有所帮助。
Tags: php目录遍历 opendir
相关文章
- ·php 目录遍历opendir函数(2014-09-19)
- ·php opendir 函数与opendir语法(2014-09-20)
- ·php opendir函数怎么用(2020-01-03)
- ·php中opendir函数用法实例(2021-04-26)
- ·PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结(2021-04-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)