ローカルにuploadという名前のフォルダーに保存されている画像をアップロードするページを作成しました。リストとしても作成しましたが、サムネイルとして(固定ピクセルで)作成するにはどうすればよいですか?独自のサイズのピクセル (大きいものと小さいもの) で表示しただけでどうなりますか。
以下のように私のコード:
<?php
// open this directory
$myDirectory = opendir("upload");
// get each entry
while($entryName = readdir($myDirectory)) {
$dirArray[] = $entryName;
}
// close directory
closedir($myDirectory);
//count elements in array
$indexCount = count($dirArray);
?>
<ul>
<?php
// loop through the array of files and print them all in a list
for($index=0; $index < $indexCount; $index++) {
$extension = substr($dirArray[$index], -3);
if ($extension == 'jpg'){ // list only jpgs
echo '<li><img src="upload/' . $dirArray[$index] . '" alt="Image" /><span>' . $dirArray[$index] . '</span>';
}
}
?>
</ul>