bing每日壁纸api源码

bing每日壁纸api源码

可直接返回bing每日壁纸图片,直接可调用

<?php
$str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1');
$array=json_decode($str);
$url='https://cn.bing.com'.$array->images[0]->urlbase.'_1920x1080.jpg';
if($url) {
	header('Content-Type: image/JPEG');
	@ob_end_clean();
	@readfile($url);
	@flush();
	@ob_flush();
	exit;
} else {
	exit('error');
}
?>
温馨提示: 本文最后更新于2023-06-24,至今已有305天,某些文章具有时效性,若有错误或已失效,请在下方留言
© 版权声明
THE END
喜欢就支持一下吧❀
点赞0投币 分享
评论 抢沙发

    请登录后查看评论内容