1
<?php
// open the current directory
$dhandle = opendir('.');
// define an array to hold the files
$files = array();

if ($dhandle) {
   // loop through all of the files
   while (false !== ($fname = readdir($dhandle))) {

      if (($fname != 'other') && ($fname != 'dd') && ($fname != 'index.htm') && ($fname != 'torcache.php')&& ($fname != 'error_log') && 
          ($fname != basename($_SERVER['PHP_SELF']))) {
          // store the filename
          $files[] = (is_dir( "./$fname" )) ? "(Dir) {$fname}" : $fname;
      }
   }
   // close the directory
   closedir($dhandle);
}

我想做的是,如果文件以“其他”或“dd”开头,那么不要将其包含在循环 $files 中;如果没有在 != 中命名整个文件名,我该怎么做才能排除这些文件?

4

1 回答 1

4

将此添加到您的支票中:

(substr($fname, 0, 5) != 'other') && (substr($fname, 0, 2) != 'dd')

请参阅PHP substr。它接受一个字符串并返回一个子字符串,该子字符串从给定的第一个数字(0表示字符串的开头)开始,长度由第二个数字(5对于“other”和2“dd”)给出。

所以你的完整陈述是:

if (
    (substr($fname, 0, 5) != 'other') &&
    (substr($fname, 0, 2) != 'dd') &&
    ($fname != 'index.htm') &&
    ($fname != 'torcache.php') &&
    ($fname != 'error_log') &&
    ($fname != basename($_SERVER['PHP_SELF']))
) { ... }
于 2012-06-15T18:36:32.033 回答