0

好的,所以我有一个充满照片的目录。

在那个目录中我有这个脚本:

<?php


// These files will be ignored
$excludedFiles = array (
  ''
);

// These file extensions will be ignored
$excludedExtensions = array (
'html',
'htm',
'php',
'css'
);

// Make sure we ignore . and ..
$excludedFiles = array_merge($excludedFiles,array('.','..')); 

// Convert to lower case so we are not case-sensitive
for ($i = 0; isset($excludedFiles[$i]); $i++) $excludedFiles[$i] =  strtolower(ltrim($excludedFiles[$i]));
for ($i = 0; isset($excludedExtensions[$i]); $i++) $excludedExtensions[$i] = strtolower($excludedExtensions[$i]);

// Loop through directory
$count = 0;
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
  $extn = explode('.',$file);
  $extn = array_pop($extn);
  // Only echo links for files that don't match our rules
  if (!in_array(strtolower($file),$excludedFiles) && !in_array(strtolower($extn),$excludedExtensions)) {
    $count++;
    print("<a href='#' rel='" . $file . "' class='image'><img src='" . $file . "' class='thumb' border='0'/></a>");
    }
  }
  ;
  closedir($handle);
 }

?>

它为画廊脚本创建一个锚点列表,因此它们的图像不必一个一个地添加,因此它是从该文件和照片的父目录中的脚本调用的,而不是制作一个文件数组在 /gallery 文件夹中,它列出了 favicon(站点根目录中的唯一图像)

有什么想法我可以告诉它在画廊目录中而不是在其被调用的文档所在的站点根目录中创建一个列表吗?

4

1 回答 1

1

替换if ($handle = opendir('.')) {if ($handle = opendir('./gallery/')) {

于 2013-01-28T07:22:21.810 回答