nico 大佬有话说 :
萌新记一下bing每日照片获取
新建一个background.php文件,输入
<?php
$date = mt_rand(0, 7); //支持返回七天内得图片
$json_content = file_get_contents(‘https://cn.bing.com/HPImageArchive.aspx?format=js&idx=’ . $date . ‘&n=1&mkt=zh-CN’); //读取必应api,获得相应数据
$json_content = json_decode($json_content, true);
$imgurl = ‘https://cn.bing.com’ . $json_content[‘images’][‘url’]; //组合图片url
header("Location: $imgurl");
?>
然后就可以在背景图里用了
background-image:url(background.php);
Westitan 大佬有话说 :
收藏一下,日后可能能用到
sr421516 大佬有话说 :
shkong 大佬有话说 :
建议缓存到本地,原来(指18年)有大佬说过,如果请求过于频繁,会被ban,不知道现在情况怎么样