用PHP列出目录内容

Posted

tags:

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

This code allows to list the contents of any given directory.
  1. <?php
  2. function list_directory_content($dir){
  3. if(is_dir($dir)){
  4. if($handle = opendir($dir)){
  5. while(($file = readdir($handle)) !== false){
  6. if($file != '.' && $file != '..' && $file != '.htaccess'){
  7. echo '<a target="_new" href="'.$dir.$file.'">'.$file.'</a><br>'." ";
  8. }
  9. }
  10. closedir($handle);
  11. }
  12. }
  13. }
  14. ?>

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

php 按日期列出目录内容

PHP 列出目录内容

PHP 列出目录的内容

PHP 列出目录内容

PHP 按日期列出目录内容

PHP 列出目录的内容