必应每日一图API接口,图片分辨率:4K 1920*1080图片自动更新时间: 0:05 |
用爱发电,请勿滥用,欢迎捐赠! |
|
展示页面 | https://bing.ee123.net/ | |
当天图像 |
https://bing.ee123.net/img/ (1080P图像) https://bing.ee123.net/img/4k (4k图像) |
|
随机图像 |
https://bing.ee123.net/img/rand |
|
参数说明 |
date=2024/07/07 指定日期(2010/01/01到现在,随机图像无效) size=1920x1080 | w1600 | h900 指定图像分辨率、宽度及高度,设定一项即可 type=json 返回JSON格式数据,为空则直接返回图像 |
|
分 辨 率 | UHD , 1920x1200 , 1920x1080 , 1366x768 , 1280x768 ,1024x768 , 800x600 , 800x480 , 768x1280 ,720x1280 , 640x480 , 480x800 , 400x240 , 320x240 , 240x320 |
原接口网址 api.kdcc.cn 和 api.ee123.net 均可以正常使用,无需修改
调用方式
-
<img src="https://bing.ee123.net/img/" /> 如需其他图片替换网址即可
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}"); // 跳转至目标图像 ?>
发表评论