我試圖從webroot文件夾中顯示單個圖像:banner
。把它放在一個數組中。但是這裏發生的是,它顯示兩個同名的圖像。顯示來自webroot文件夾的單張圖片
我的代碼是在這裏:
<div id="banner-left-content">
<?php
$ab[]= array();
foreach(glob('./banner/thumbs/*.*') as $filename){
$ab = array($filename);
foreach($ab as $imagename) {
$listImages[]=$imagename;
echo "<img src='$listImages[0]' width='200' height='300'/>";
}
}
?>
</div>
非常感謝。現在它工作... – user3309752