php获取bing每日壁纸示例分享

前端之家收集整理的这篇文章主要介绍了php获取bing每日壁纸示例分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

代码如下:
PHP
$str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');
if(preg_match("/(.+?)<\/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://www.f2er.com/php/25061.html

猜你在找的PHP相关文章