码迷,mamicode.com
首页 > Web开发 > 详细

PHP readdir() 函数

时间:2019-10-11 12:30:43      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:nbsp   nts   用法   csp   系统   文件   指定   发展   images   

打开一个目录,读取它的内容,然后关闭:

<?php
$dir = "/images/";

// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "filename:" . $file . "<br>";
}
closedir($dh);
}
}
?>

结果:

filename: cat.gif
filename: dog.gif
filename: horse.gif

 


定义和用法

readdir() 函数返回目录中下一个文件的文件名。


语法

readdir(dir_handle);

 

参数描述
dir_handle 可选。指定之前由 opendir() 打开的目录句柄资源。如果该参数未指定,则使用最后一个由 opendir() 打开的链接。

技术细节

 

返回值: 成功则返回文件名,失败则返回 FALSE。
PHP 版本: 4.0+

「伺服电机系统」交直流伺服电机系统的发展趋势是什么?

PHP readdir() 函数

标签:nbsp   nts   用法   csp   系统   文件   指定   发展   images   

原文地址:https://www.cnblogs.com/furuihua/p/11653312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!