必应获取每日高清壁纸API代码
2019-01-27
·
via API on 轻风云
话不多说直接上代码
1
2
3
4
5
6
7
8
|
<?php
$str = file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');
if (preg_match("/<url>(.+?)<\/url>/ies", $str, $matches)) {
$imgurl = 'http://cn.bing.com' . $matches[1];
} else {
$imgurl = '修改为你自己的默认图片地址';
}
header("Location: $imgurl");
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。