mirror of
https://github.com/zhxycn/BingWallpaperAPI.git
synced 2024-11-22 08:07:39 +00:00
Update index.php
This commit is contained in:
parent
3c4a006269
commit
afb5b6346a
16
index.php
16
index.php
@ -1,16 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
$ago = '0'; // 时间 (几天前。0为今天,1为昨天,2为前天,以此类推。)
|
// GitHub: https://github.com/zhxycn/BingWallpaperAPI
|
||||||
$region = '1'; // 位置(必应国际版填0,国内版填1。)
|
$ago = '0'; //How many days ago
|
||||||
// 必应国内版当日16至次日16时为一张壁纸。
|
$region = '0'; //Bing region
|
||||||
|
|
||||||
if ($_GET['region'] == 'global') {
|
$ago = $_REQUEST['ago'];
|
||||||
|
if ($_REQUEST['region'] == 'global') {
|
||||||
$region = '0';
|
$region = '0';
|
||||||
} elseif ($_GET['region'] == 'cn') {
|
} elseif ($_REQUEST['region'] == 'cn') {
|
||||||
$region = '1';
|
$region = '1';
|
||||||
} else {
|
} else {
|
||||||
$region = $region;
|
$region = $region;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($region == '0') {
|
if ($region == '0') {
|
||||||
$data = json_decode(file_get_contents('https://bing.com/HPImageArchive.aspx?format=js&idx=' . $ago . '&n=1'), true);
|
$data = json_decode(file_get_contents('https://bing.com/HPImageArchive.aspx?format=js&idx=' . $ago . '&n=1'), true);
|
||||||
$url = "https://bing.com" . $data['images'][0]['url'];
|
$url = "https://bing.com" . $data['images'][0]['url'];
|
||||||
@ -18,11 +18,9 @@
|
|||||||
$data = json_decode(file_get_contents('https://cn.bing.com/HPImageArchive.aspx?format=js&idx=' . $ago . '&n=1&mkt=zh-CN'), true);
|
$data = json_decode(file_get_contents('https://cn.bing.com/HPImageArchive.aspx?format=js&idx=' . $ago . '&n=1&mkt=zh-CN'), true);
|
||||||
$url = "https://cn.bing.com" . $data['images'][0]['url'];
|
$url = "https://cn.bing.com" . $data['images'][0]['url'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$date = $data['images'][0]['startdate'];
|
$date = $data['images'][0]['startdate'];
|
||||||
$copyright = $data['images'][0]['copyright'];
|
$copyright = $data['images'][0]['copyright'];
|
||||||
|
if ($_REQUEST['encode'] == 'json') {
|
||||||
if ($_GET['encode'] == 'json') {
|
|
||||||
$echo = array('date' => $date, 'url' => $url, 'copyright' => $copyright);
|
$echo = array('date' => $date, 'url' => $url, 'copyright' => $copyright);
|
||||||
echo json_encode($echo);
|
echo json_encode($echo);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user