获取bing每日图片 API
来自 http://www.xhily.cn/archives/157.html
bing搜索首页的壁纸都是每日一换(http://cn.bing.com/)
想要这种效果其实一段代码就ok
<?php
$str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');
if(preg_match("/<url>(.+?)<\/url>/ies",$str,$matches)){
$imgurl='http://cn.bing.com'.$matches[1];
}
if($imgurl){
header('Content-Type: image/JPEG');
@ob_end_clean();
@readfile($imgurl);
@flush(); @ob_flush();
exit();
}else{
exit('error');
}
?>
访问 https://m69w.com/demo/bing.php
可以用作背景图片之类的
文章转自http://johnzhang.cn/2015/02/13/get-bing-daily-picture/ 文中代码出错 已经修改
下载地址 bing.7z