1 Star 0 Fork 0

caozq/weather

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 977 Bytes
一键复制 编辑 原始数据 按行查看 历史
caozq 提交于 2017-01-09 10:18 . 天气图标不满两位修正
<?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;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hjfx/weather.git
git@gitee.com:hjfx/weather.git
hjfx
weather
weather
master

搜索帮助