php opendir 函数与opendir语法
发布时间:2022-06-16 09:41:46 所属栏目:PHP教程 来源:互联网
导读:opendir语法:opendir(path,context) 目录,功能说明:打开目录句柄,opendir() 函数打开一个目录句柄,则该函数返回一个目录流,否则返回false.来看个opendir列出目录下所有文件实例,代码如下: $dirs =./;//指定当前上当 if( is_dir( $dirs ) ) { $hanld = opendi
opendir语法:opendir(path,context) 目录,功能说明:打开目录句柄,opendir() 函数打开一个目录句柄,则该函数返回一个目录流,否则返回false.来看个opendir列出目录下所有文件实例,代码如下: $dirs ='./';//指定当前上当 if( is_dir( $dirs ) ) { $hanld = opendir($dirs); while (($file = readdir($hanld)) !== false) { echo "文件名: " . $file . "<br />"; } closedir($hanld); } else { echo '不是目录'; } /* 输出结果 文件名:a 文件名:b 文件名:www.phpfensi.com */ 提示和注释 注释:从 PHP 5.0.0 开始,path 参数支持 ftp:// URL wrapper 注释:在 PHP 4.3.0 中,path 参数可以是任何支持目录列表的 URL,不过在 PHP 4 中只有 file:// URL wrapper 支持此功能. ![]() (编辑:信阳站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |