最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php 目录遍历opendir函数
时间:2022-06-24 20:10:24 编辑:袖梨 来源:一聚教程网
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"."
";
}
closedir($dh);
}
}
?>
相关文章
- 雅思报名官网-雅思考试报名官网入口 03-29
- 洛克王国世界月免暗港沉船位置 洛克王国暗港沉船详细坐标与进入方法 03-29
- 三国天下归心 桃园结义队阵容搭配与实战玩法详解 03-29
- 苹果追剧app哪个最好用-免费苹果追剧app下载推荐 03-29
- 功夫熊猫神龙大侠 远程英雄职业推荐与玩法解析 03-29
- 流放之路2编年史官网入口揭秘-流放之路2最新编年史官网一键直达 03-29