Home > Article > Backend Development > php opendir() function finds all files in a directory
opendir() 函数打开目录句柄。readdir() 函数返回目录中下一个文件的文件名。closedir() 函数关闭目录句柄。这篇文章主要介绍了php opendir()列出目录下所有文件的实例代码的相关资料,需要的朋友可以参考下
实例一:
使用opendir()列出目录下所有文件
<?php $dr = @opendir('/tmp/'); if(!$dr) { echo "Error opening the /tmp/ directory!<BR>"; exit; } while(($files[] = readdir($dr)) !== false); print_r($files); ?>
实例二:
列出目录下所有文件
<?php $dirname = "C:\\Apache\\bin"; $dir = opendir( $dirname ); while( false != ( $file = readdir( $dir ) ) ) { if( ( $file != "." ) and ( $file != ".." ) ) { $file_list .= "<li>$file</li>"; } } closedir( $dir ); ?> <html> <head> <title>列出目录下所有文件</title> <head> <body> <p>Files in <?php echo( $dirname ); ?> </p> <ul> <?php echo( $file_list ); ?> </ul> </body> </html>
The above is the detailed content of php opendir() function finds all files in a directory. For more information, please follow other related articles on the PHP Chinese website!