21,891
社区成员
发帖
与我相关
我的任务
分享
$arr = array('qq.html','baidu.html','so.html');
$page = '';
if(isset($_COOKIE['page'])){
$page = $_COOKIE['page'];
}else{
$page = $arr[mt_rand(0,2)];
setcookie('page',$page,time()+86400);
}
echo file_get_content($page);