如何在PHP / javascript中创建每日幻灯片

时间:2015-04-28 12:18:41

标签: javascript php slideshow

我有一个图像文件夹,我想每天显示一张图片(比如每天早上8点更改),使用php / javascript。共有21张图片(价值21天),然后再循环播放。

是否有一个功能,它会在一定时间后调用下一个图像?

或者可能是某种增量?

由于

1 个答案:

答案 0 :(得分:2)

$images = scandir("/my/images/path"); //puts all images into a 0-indexed array
$day = date('j',strtotime("-8 hours")) - 1; //get todays day - 0-30
$todays_key = $day%20; //use remainder function to make sure the key is between 0 and 20
$todays_image = $images[$todays_key]; //use the key to get the image