我正在使用 php 灯箱(这个 - http://www.fatbellyman.com/webstuff/lightbox_gallery/index.php)来自动显示缩略图和图像。我想让标题和图像描述显示在较大的灯箱图像上,从单独的列表(文本文件?)中提取。如果可以在不使用数据库的情况下做到这一点,那将是最好的。
这是在我的画廊页面上:
<?php include 'lightbox_display_function.php'; ?>
<?php lightbox_display('apparel/soiled/icarus/', 'lightbox[icarus]'); ?>
这是 lightbox_display_function.php:
<?php function lightbox_display($dir_to_search, $rel){
$image_dir = $dir_to_search;
$dir_to_search = scandir($dir_to_search);
$image_exts = array('gif', 'jpg', 'jpeg', 'png');
$excluded_filename = '_t';
foreach ($dir_to_search as $image_file){
$dot = strrpos($image_file, '.');
$filename = substr($image_file, 0, $dot);
$filetype = substr($image_file, $dot+1);
$thumbnail_file = strrpos($filename, $excluded_filename);
if ((!$thumbnail_file) and array_search($filetype, $image_exts) !== false){
echo "<a href='".$image_dir.$image_file."' rel='".$rel."'>
<img src='".$image_dir.$filename."_t.".$filetype."' alt='".$filename."' width='70' height='70' title='$filename'/>
</a>"."\n";
}
}
}