天气预报 插件 - xBlog
作者: iTxGo |
发布于: 2026-01-30 13:08 |
更新于: 2026-02-24 21:25 |
分类: 笔记 |
浏览: 93 |
一. 天气预报插件文件结构
***/
plugin/ 插件目录
└── weather/ 天气插件目录
├── api.php (异步加载接口)
├── weather_*.json (固定地区版 缓存文件)
├── weather_ip_*.json (IP 定位版 缓存文件)
├── weather_widget.php (固定地区版)
├── weather_widget_ip.php (IP 定位版)
├── weather_widget_ip_with_days.php (IP 定位未来天气版)
├── weather_functions.php (天气插件函数)
└── weather_styles.css (天气插件样式)
二. 页面引入方式
<?php include './plugin/weather/weather_widget.php'; ?>
<?php include './plugin/weather/weather_widget_ip.php'; ?>
<?php include './plugin/weather/weather_widget_ip_with_days.php'; ?>