您好我有这个基本的随机引用脚本,但我希望它输出一个数组中的页面,即而不是" 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]);
?>
答案 0 :(得分:0)
将您的网页保存在一个数组中。然后用foreach迭代它。 将$ siteId替换为应包含的站点编号
$pages = array(1 => 'text.php1', 2 => 'text.php2', 3 => 'text3.php', 4 => 'text4.php');
foreach($pages as $pagekey => $page){
if($pagekey == $siteId){
include($page);
}
}