画像のフォルダーとサブフォルダーを含むフォト ギャラリーを作成しています。すべてのフォルダーに HTML ファイルを配置する必要はありません。これはどのように行うことができますか?これが私のPHPです:
<?php
$directory = "thumbs/";
$files = glob($directory."*");
$photoCount = 0;
buildStage();
function buildStage() {
global $directory, $files;
foreach($files as $file) {
if(is_dir($file)) showFolder($file);
else showPhotos($directory);
}
}
function showPhotos($imagePath) {
global $photoCount;
$imageFile = glob($imagePath."/*.*");
echo '<img src="'.$imageFile[$photoCount].'" id="thumbPic"
onmouseover="imageOver(this)"
onmouseout="imageOut(this)"
/>'."\n";
$photoCount++;
}
function showFolder($imagePath) {
$imageFile = glob($imagePath."/*.*");
echo '<a href="' .$imagePath. '<img src="'.$imageFile[1].'" id="folder"
onmouseover="imageOver(this)"
onmouseout="imageOut(this)"
onmousedown="imageDown(this)"
/>'."\n";
}
?>
そして、ここに私のHTMLがあります:
<body>
<div id="container">
<?php include 'jellybox.php'; ?>
</div>
</body>
ご協力いただきありがとうございます。