0
<?php
$directory = 'images/slideshow';
try {
// Styling for images
echo '<div id="myslides">';
foreach (new DirectoryIterator($directory) as $item) {
if ($item->isFile()) {
$path = $directory . '/' . $item;
echo '<img src="' . $path . '"/>';
}
}
echo '</div>';
}
catch(Exception $e) {
echo 'No images found for this slideshow.<br />';
}
?>
代碼從這個主題複製: Display Images From A Folder (slideshow)
我想知道,如果可能的從外部加載圖像,或從URL的特定目錄加載圖像?提前致謝。
是否意味着它不會加載外部圖像的圖像了,像上面的腳本? – jongmr
是否意味着它不再加載外部文件夾中的圖像,就像上面的腳本一樣? – jongmr