必应搜索官网每天会更新一张高质量的背景图。好多小伙伴想在接口中调用它们,但必应的服务器在国内不算特别稳定,所以我给大家提供了必应每日一图的API的核心调用代码!
以下为PHP核心代码,其他的根据自己的需求修改即可😋
<?php
$str = file_get_contents('https://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1'); //读取必应api
$str = json_decode($str, true); //接受JSON 编码的字符串并且把它转换为 PHP变量
$imgurl = 'https://cn.bing.com' . $str['images'][0]['url']; //获取图片url
header("Location: {$imgurl}"); // 跳转至目标图像
?>
调用方式
<img src="https://v.vpsaz.cn/api/bing/">
赞赏