日期:2014-05-16  浏览次数:20494 次

php获取bing每日图片
必应每天都会更新一些漂亮高清的图片,这段代码获取必应每天更新的图片。我们也可以把它作为网站的背景使用。


必应效果  必应地址:http://cn.bing.com/


实际使用后效果  演示地址:http://cs.dzzoffice.com/



代码: 复制为.php文件

<?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');
}
?>

------解决方案--------------------
感谢分享 mark一下
------解决方案--------------------
非常不错。呵呵,
------解决方案--------------------
非常不错。赞。
------解决方案--------------------
不错 有意思