PHP:列出目录中的项目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP:列出目录中的项目相关的知识,希望对你有一定的参考价值。

See the contents within a directory and print them out.
  1. $dir = ".";
  2.  
  3. if( is_dir( $dir ) ){
  4. if( $dir_handle = opendir( $dir ) ){
  5. while( $filename = readdir( $dir_handle ) ){
  6. echo "filename: {$filename}<br />" ;
  7. }
  8. //rewinddir($dir_handle) to start over
  9. closedir( $dir_handle );
  10. }
  11. }
  12.  
  13. echo "<hr />";
  14.  
  15. if( is_dir( $dir ) ){
  16. $dir_array = scandir( $dir );
  17. foreach( $dir_array as $file ){
  18. if( stripos( $file, '.' ) > 0){
  19. echo "filename: {$file}<br />";
  20. }
  21. }
  22. }

以上是关于PHP:列出目录中的项目的主要内容,如果未能解决你的问题,请参考以下文章

PHP:列出目录中的项目

列出目录中的所有文件夹(PHP)[重复]

RecursiveDirectoryIterator() 不显示空目录

PHP列出目录中的所有文件[重复]

PHP 列出PHP中的目录内容

列出一个目录中的所有文件PHP [重复]