嗨,我有这个基本的随机报价脚本,但我希望它以数组的形式输出页面,即代替“echo $quote”,使用“include('text.php, text2.php, text3. php');" 等等
不太确定该怎么做。有任何想法吗?
我还希望计时器成为突出的选择功能,以便它从循环的列表中进行选择,而不是随机拉出。
谢谢 :)
<?php
$cachefile = './current_t_id';
$time = $id = null;
$change_every = 3600;
include('text.php');
if(is_file($cachefile)) {
list($time, $id) = explode(' ', file_get_contents($cachefile));
}
if(!$time || time() - $time > $change_every) {
srand ((double) microtime() * 100000);
$id = rand(0,count($quotes)-1);
file_put_contents($cachefile, time().' '.$id); // update cache
}
echo ($quotes[$id]);
?>