代码拉取完成,页面将自动刷新
<?php
require 'config.php';
$cityid = get_option_value("cityid", "101010100");
$date = date("Ymd", time());
$obj = $MEM->get($cityid);
if (empty($obj) || $obj->date != $date) {
init_weather($cityid, $date);
}
echo print_j($MEM->get($cityid));
function init_weather($cityid, $date) {
global $MEM;
$obj = duba_weather($cityid, $date);
if ($obj != null) {
$obj->date = $date;
}
$MEM->set($cityid, $obj, 0, 600);
}
function duba_weather($cityid, $date) {
$ret = new stdClass();
$str = @file_get_contents("https://www.duba.com/static/weather_info/{$cityid}.html?v=".time());
if (isset($str)) {
$str = substr($str, 17, -1);
$obj = json_decode($str);
$ret->weatherinfo = new stdClass();
$ret->weatherinfo->weather1 = $obj->weatherinfo->weather1;
$img1 = $obj->weatherinfo->img1;
if (strlen($img1) == 1) {
$img1 = "0".$img1;
}
$ret->weatherinfo->img1 = "http://www.bjbsh.com/api/weather/img/d{$img1}.png";
return $ret;
} else {
return null;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。