官方API
https://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=zh-CN
自制接口
新建PHP文件,复制如下代码即可:
<?php $json_string = file_get_contents('https://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=zh-CN'); $data = json_decode($json_string, true); $url = 'https://cn.bing.com'.$data['images'][0]['url']; header("Location: {$url}"); ?>
调用
可直接调用或作为以下方式调用。
1、作为图片调用:<img src=”http://域名/文件名.php” />
2、作为网页背景调用:body{background:url(‘http://域名/文件名.php’);}