php 目录遍历opendir函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 09:08:13 浏览: 评论:0
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 />";
- } //开源代码phpfensi.com
- closedir($dh);
- }
- }
- ?>
Tags: php目录遍历 opendir函数
- 上一篇:php截取一定长度的字符串
- 下一篇:substr() explode()函数
相关文章
- ·php目录遍历函数opendir用法实例(2021-04-27)
- ·php opendir 函数与opendir语法(2014-09-20)
- ·php opendir函数怎么用(2020-01-03)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)