Bing每日背景图片API接口源码
Bing每日背景图片API接口源码,图片每天会自动更新,一天更新一张。分享给需要做网站背景的来使用,2020年9月1日 11:58:07测试API接口依旧可用。
API接口源码
<?php /** *Bing图片获取 */ $str = file_get_contents('https://cn.bing.com/HPImageArchive.aspx?idx=0&n=1'); if(preg_match("/<url>(.+?)</url>/ies",$str,$matches)){ $imgurl='https://cn.bing.com'.$matches[1]; }else{ $imgurl='/content/templates/dudu/img/a.jpg'; } header("Location: $imgurl"); ?>
API接口返回内容
<images> <image> <startdate>20200831</startdate> <fullstartdate>202008310900</fullstartdate> <enddate>20200901</enddate> <url> /th?id=OHR.OysterMushroom_ZH-CN6265453153_1920x1080.jpg&rf=LaDigue_1920x1080.jpg&pid=hp </url> <urlBase>/th?id=OHR.OysterMushroom_ZH-CN6265453153</urlBase> <copyright>比利时的平菇 (© Philippe Clement/Minden Pictures)</copyright> <copyrightlink> https://www.bing.com/search?q=%E5%B9%B3%E8%8F%87&form=hpcapt&mkt=zh-cn </copyrightlink> <headline/> <drk>1</drk> <top>1</top> <bot>1</bot> <hotspots/> </image> <tooltips> <loadMessage> <message>正在加载...</message> </loadMessage> <previousImage> <text>上一个图像</text> </previousImage> <nextImage> <text>下一个图像</text> </nextImage> <play> <text>播放视频</text> </play> <pause> <text>暂停视频</text> </pause> </tooltips> </images>
本文结束