$time = date("Ymd", time());
$log = "./log/" . $time . '.txt';
//判斷緩存檔案是否存在
if (file_exists($log)) {
//讀取緩存
$imgurl = file_get_contents($log);
//跳轉至圖檔位址
header("Location: $imgurl");
} else {
//擷取bing背景圖
$str = file_get_contents('http://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1');
//解析Bing官方接口Json
$data = json_decode($str,true);
//七牛CDN鏡像加速
$imgurl = 'http://s.cn.bing.net'.$data['images'][0]['urlbase']. '_1920x1080.jpg';
//寫入TXT用作緩存
file_put_contents($log, $imgurl);
//跳轉至圖檔位址
header("Location: $imgurl");
}
複制
應該,我這個是目前優化最好的Bing每日一圖api(大佬勿噴)