这是我的新Blog网址,欢迎您的访问。 This is my new blog website. Welcome to visit it. https://itleo.xyz/
这是我的新Blog网址,欢迎您的访问。 This is my new blog website. Welcome to visit it. https://itleo.xyz/
安装 docker CentOS yum install -y yum-utils yum-config-manager \ –add-repo \ https://download.docker.com/linux/centos/docker-ce.repo yum install docker-ce docker-ce-cli containerd.io -y systemctl start docker systemctl enable docker Ubuntu / Debian sudo apt-get update sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common -y curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add – sudo add-apt-repository \…
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;…