0

我的代码循环遍历一个目录并显示我不想显示的 index.php 文件所在的所有文件和文件夹。

<?php 

    $directory = 'jocuri';
    $row = 0;

    if ($handle = opendir($directory.'/')) 
    {
        echo '<table border="1">';    
        while ($cat = readdir($handle)) 
        {
            if ($cat != '.' && $cat != '..') 
            {
                if($row==0) echo '<tr>';

                echo '<td align="center">';
                echo '  <a href="'.$directory.'/'.$cat.'" style="text-decoration:none">';
                echo '    <img src="'.$directory.'/'.$cat.'/image.php" style="display:block" />'.str_replace('_', ' ', $cat);
                echo '  </a>';
                echo '</td>';

                if($row == 2) 
                {
                  echo '</tr>';
                  $row = -1;
                }
                $row++;
            }
        }
        echo '</table>';
    }
?>

我怎样才能做到这一点?

4

2 回答 2

1

保持快速和肮脏:

if ($cat != '.'&&$cat != '..' && $cat != 'index.php'){ ... }

但我肯定会转向一些更一致的方法,比如FilesystemIteratoror glob()

于 2013-07-06T12:32:06.270 回答
0
while($cat = readdir($handle)) {
  if (in_array($cat, array('.', '..', 'index.php')))
    continue;

  // display the file here
}
于 2013-07-06T12:31:43.800 回答