时间:2023-05-22加入收藏
实现梳理<?php
//使用date方法获取当前的月(m),日(d) ;
switch(date("m,d")){
//国庆
//设置节气具体日期,然后执行修改和获取的操作
case "10,01" ;
//用W方式打开文件, 如果无法打开就停止执行
$imagefile = fopen("放链接的文本名称,如:test.txt", "w") or die("Unable to open file!");
//设置需要改的链接
$txt = "这里设置当天需要改的图像链接";
//通过fwrite方法(文件名,修改的值)
fwrite($imagefile, $txt);
//关闭文件
fclose($imagefile);
//设置img值的来源
$img=file('放置图像链接的文本名称如:test.txt') ;
//设置随机,可忽略
$url =array_rand($img);
//输出图片
header("Location:".$img[$url]) ;
break ;
?>