php获取bing每天图片
程序员文章站
2022-05-10 14:45:42
...
php获取bing每日图片
必应每天都会更新一些漂亮高清的图片,这段代码获取必应每天更新的图片。我们也可以把它作为网站的背景使用。
必应效果 必应地址:http://cn.bing.com/
实际使用后效果 演示地址:http://cs.dzzoffice.com/
代码: 复制为.php文件
------解决方案--------------------
感谢分享 mark一下
------解决方案--------------------
非常不错。呵呵,
------解决方案--------------------
非常不错。赞。
------解决方案--------------------
不错 有意思
必应每天都会更新一些漂亮高清的图片,这段代码获取必应每天更新的图片。我们也可以把它作为网站的背景使用。
必应效果 必应地址:http://cn.bing.com/
实际使用后效果 演示地址:http://cs.dzzoffice.com/
代码: 复制为.php文件
$str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');
if(preg_match("/(.+?)/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一下
------解决方案--------------------
非常不错。呵呵,
------解决方案--------------------
非常不错。赞。
------解决方案--------------------
不错 有意思
相关文章
相关视频
上一篇: 如何创建对象