Bing今日图片 地址接口 https://liuzheng.pro/bingwallpaper.php 源代码分为两部分 1. Nginx 反向代理Bing原网站(添加入Nginx配置文件即可) location /bing/ { rewrite ^/bing/(.*)$ /$1 break;#反向代理bing proxy_pass https://www.bing.com; #将真正的请求代理到真实的服务器地址 } 2. PHP抓取及跳转源码 <?php // 访问Bing的API $str = file_get_contents(‘https://liuzheng.pro/bing/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=ja-jp’); //修改mkt为修改获取地区或国家 if($str){ // 判断是是否成功 $data = json_decode($str, true); // 利用内置函数解析 $image = ‘https://liuzheng.pro/bing’ . $data[‘images’][0][‘url’]; // 拼接链接 // echo pass; // echo $str; // echo $matches; // echo $imgurl;…