0

我对当前用于显示目录文件内容的 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>

非常感谢您的帮助。

4

2 回答 2

2

只需在最后一部分加上一个条件:

<?php if (!empty($thelist)) { ?>
<P>List of files:</p>
<P><?=$thelist?></p>
<?php } ?>
于 2012-06-20T20:01:38.577 回答
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>
于 2012-06-20T20:09:23.147 回答