Heim  >  Artikel  >  Backend-Entwicklung  >  php中opendir函数用法实例,phpopendir_PHP教程

php中opendir函数用法实例,phpopendir_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:13:56895Durchsuche

php中opendir函数用法实例,phpopendir

本文实例分析了php中opendir函数用法。分享给大家供大家参考。具体如下:

opendir语法:opendir(path,context)

目录,功能说明:打开目录句柄,opendir() 函数打开一个目录句柄,则该函数返回一个目录流,否则返回false.来看个opendir列出目录下所有文件实例,代码如下:

复制代码 代码如下:
$dirs ='./';//指定当前上当
if( is_dir( $dirs ) )
{
 $hanld = opendir($dirs);
 
 while (($file = readdir($hanld)) !== false)
 {
   echo "文件名: " . $file . "
";
 }
 closedir($hanld);
}
else
{
 echo '不是目录';
}

输出结果:
文件名:a
文件名:b
文件名:www.jb51.net

提示和注释:

注释:从 PHP 5.0.0 开始,path 参数支持 ftp:// URL wrapper

注释:在 PHP 4.3.0 中,path 参数可以是任何支持目录列表的 URL,不过在 PHP 4 中只有 file:// URL wrapper 支持此功能.

希望本文所述对大家的PHP程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/912286.htmlTechArticlephp中opendir函数用法实例,phpopendir 本文实例分析了php中opendir函数用法。分享给大家供大家参考。具体如下: opendir语法:opendir(path,context) 目...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn