如果目录为空,如何使目录列表文本消失

时间:2012-06-20 19:54:59

标签: php directory directory-listing

我很满意我正在使用的PHP代码来显示目录的文件内容,但它目前说的是“文件列表”,我想知道如果目录可以使文本消失是空的,如果可能的话。我目前使用的代码是:

<?php
 if ($handle = opendir('.')) {
   while (false !== ($file = readdir($handle)))
  {
      if ($file != "." && $file != "..")
  {
        $thelist .= '<a href="'.$file.'">'.$file.'</a>';
      }
   }
  closedir($handle);
  }
?>
<P>List of files:</p>
<P><?=$thelist?></p>

非常感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

在最后一部分附近添加一个条件:

<?php if (!empty($thelist)) { ?>
<P>List of files:</p>
<P><?=$thelist?></p>
<?php } ?>

答案 1 :(得分:0)

试试这个:

<?php
if ( $handle = opendir('.')) {
    while ( false !== ( $file = readdir( $handle ) ) ) {
        if ( $file != "." && $file != ".." ) {
            $thelist .= "<a href=\"".$file."\">".$file."</a><br />";
            }
        }
    }
closedir( $handle );
if ( strlen( $thelist ) > 0 ) {
    echo "<p>List of files:</p>";
    }
?>
<p><?=$thelist?></p>