在php中我想问如何从文件夹目录中一张一张地获取图像并显示在jquery滑块中我已经尝试过这个php代码,因为它没有按我想要的方式工作?
<ul class="jcarousel-list">
<li class="jcarousel-item">
<?php
$directory = "data/uploads/topslider/";
if (glob($directory . "*") != false)
{
$filecount = count(glob($directory . "*"));
}
else
{
}
$files_index = glob("data/uploads/"."top"."slider/*.*");
for ($i=0; $i<$filecount; $i++)
{
$num2 = $files_index[$i];
?>
<img src="<?php echo $num2;?>" width="50" height="50" alt="" /> <?
}?></li>
</ul>
我想要这样的显示:
Image1 Image2 Image3......等等来自单个文件夹或目录