search
HomeBackend DevelopmentPHP TutorialWeChat public platform development (5) Weather forecast function development_PHP tutorial


The previous articles have briefly explained the opening and simple use of the WeChat public platform Introduction, but they do not involve problems in actual use, such as weather query, bus query, express delivery query, etc. The next few articles will develop and explain some functions that are often used in real life for readers' reference.

This article will develop weather queries that everyone cares about every day. For example, if a user sends a message "Suzhou Weather", the real-time weather conditions in Suzhou will be returned, as well as the next two days or even the next five days. weather conditions.

First of all, we need to judge the message sent by the user to determine whether the message contains the "weather" key If it contains, you need to continue to extract regional information, and then query the relevant regional weather through the open API provided by China Weather Network (http://www.weather.com.cn).

The format of the message sent by the user to inquire about the weather is fixed, that is, “ Region + weather", so first intercept the last two words to determine whether they are the "weather" keyword.

Use the PHP function mb_substr() to intercept. About the usage of this function:

<span mb_substr &mdash; 获取字符串的部分

  <span string mb_substr ( <span string <span $str , int <span $start [, int <span $length [, 
<span string <span $encoding<span  ]] )根据字符数执行一个多字节安全的 <span substr() 操作。 位置是从 str 的开始位置进行计数。
 第一个字符的位置是 0。第二个字符的位置是 1<span ,以此类推。str
从该 <span string<span  中提取子字符串。

start
str 中要使用的第一个字符的位置。
正数 -> 从字符串开头指定位置开始;
负数 -> 从字符串结尾指定位置开始;
length
str 中要使用的最大字符数。
正数 -> 从 start <span 处开始最多包括 length 个字符;
负数 -> string 末尾处的 length 个字符将会被漏掉(若 start 是负数则从字符串开头算起)。
encoding
encoding 参数为字符编码。如果省略,则使用内部字符编码。mb_substr() 函数根据 start 和 length 
参数返回 str 中指定的部分。

$str = mb_substr($keyword,-2,2,"UTF-8");

Start from the second character from the end of the message, intercept two characters, and then determine whether it is the "weather" keyword.

For region extraction, still use the mb_substr() function.

$str_key = mb_substr($keyword,0,-2,"UTF-8");

Start from the beginning of the message and truncate the last two characters (weather), you have Region keyword.

Then make a judgment and then call the function to query the weather data.

<span if(<span $str == &#39;天气&#39; && !empty($str_key)<span )
{
     <span //调用函数查询天气数据}

What we call here is the weather forecast API interface provided by the China National Meteorological Administration , interface address: http://m.weather.com.cn/data/101190401.html

The numbers in the URL refer to the city number 101190401 (Suzhou), and the corresponding relationships of other cities will be provided below.

The information returned by this interface is relatively comprehensive and is also provided in json format. The format is as follows:

<span {"weatherinfo":{
//基本信息;"city":"苏州","city_en":"suzhou",
"date_y":"2013年7月9日","date":"","week":"星期二","fchh":"18","cityid":"101190401",
//摄氏温度"temp1":"30℃~37℃",
"temp2":"30℃~37℃",
"temp3":"29℃~35℃",
"temp4":"27℃~33℃",
"temp5":"27℃~31℃",
"temp6":"27℃~35℃",
//华氏温度;"tempF1":"86℉~98.6℉",
"tempF2":"86℉~98.6℉",
"tempF3":"84.2℉~95℉",
"tempF4":"80.6℉~91.4℉",
"tempF5":"80.6℉~87.8℉",
"tempF6":"80.6℉~95℉",
//天气描述;"weather1":"晴转多云",
"weather2":"晴转多云",
"weather3":"晴转多云",
"weather4":"多云",
"weather5":"雷阵雨转中雨",
"weather6":"雷阵雨转多云",
//天气描述图片序号"img1":"0",
"img2":"1",
"img3":"0",
"img4":"1",
"img5":"0",
"img6":"1",
"img7":"1",
"img8":"99",
"img9":"4",
"img10":"8",
"img11":"4",
"img12":"1",
//图片名称;"img_single":"1",
"img_title1":"晴",
"img_title2":"多云",
"img_title3":"晴",
"img_title4":"多云",
"img_title5":"晴",
"img_title6":"多云",
"img_title7":"多云",
"img_title8":"多云",
"img_title9":"雷阵雨",
"img_title10":"中雨",
"img_title11":"雷阵雨",
"img_title12":"多云",
"img_title_single":"多云",
//风速描述"wind1":"西南风3-4级",
"wind2":"西南风3-4级",
"wind3":"东南风3-4级",
"wind4":"东南风3-4级转4-5级",
"wind5":"东南风4-5级转西南风3-4级",
"wind6":"西南风3-4级转4-5级",
//风速级别描述"fx1":"西南风",
"fx2":"西南风",
"fl1":"3-4级",
"fl2":"3-4级",
"fl3":"3-4级",
"fl4":"3-4级转4-5级",
"fl5":"4-5级转3-4级",
"fl6":"3-4级转4-5级",
//今日穿衣指数;"index":"炎热",
"index_d":"天气炎热,建议着短衫、短裙、短裤、薄型T恤衫等清凉夏季服装。",
//48小时穿衣指数"index48":"炎热",
"index48_d":"天气炎热,建议着短衫、短裙、短裤、薄型T恤衫等清凉夏季服装。",
//紫外线及48小时紫外线"index_uv":"中等",
"index48_uv":"中等",
//洗车指数"index_xc":"适宜",
//旅游指数"index_tr":"较不宜",
//舒适指数"index_co":"很不舒适",
"st1":"36",
"st2":"28",
"st3":"36",
"st4":"28",
"st5":"34",
"st6":"27",
//晨练指数"index_cl":"较适宜",
//晾晒指数"index_ls":"适宜",
//过敏指数"index_ag":"不易发"}}

weather() function is as follows:

<span private <span function weather(<span $n<span ){<span include("weather_cityId.php"<span );
<span $c_name=<span $weather_cityId[<span $n<span ];<span if(!<span empty(<span $c_name<span )){
<span $json=<span file_get_contents("http://m.weather.com.cn/data/".<span $c_name.".html"<span );
<span return json_decode(<span $json<span );
    } <span else<span  {<span return <span null<span ;
    }
}

A city correspondence file weather_cityId.php is included here, the format is as follows:

<?<span php
<span $weather_cityId = <span array("北京"=>"101010100","上海"=>"101020100","苏州"=>"101190401"<span );
?>

According to the incoming city Name, get the city code. If it is not empty, call the API of China Weather Network for query, return data in json format, and then parse and return the data. If it is empty, return a null value.

Determine whether the returned data is empty. If it is empty, then $contentStr = "Sorry, no check Weather information to "".$str_key.""! ";

If the returned data is not empty, then:

$contentStr = "【".$data->weatherinfo->city."天气预报】\n".$data->weatherinfo->date_y." 
".$data->weatherinfo->fchh."时发布"."\n\n实时天气\n".$data->weatherinfo->weather1." 
".$data->weatherinfo->temp1." ".$data->weatherinfo->wind1."\n\n温馨提示:".
$data->weatherinfo->index_d."\n\n明天\n".$data->weatherinfo->weather2." ".
$data->weatherinfo->temp2." ".$data->weatherinfo->wind2."\n\n后天\n".
$data->weatherinfo->weather3." ".$data->weatherinfo->temp3." ".
$data->weatherinfo->wind3;

Explanation:

weatherinfo->city //Get the city name, here is Suzhou

weatherinfo->date_y //Get the date, here is July 9, 2013

weatherinfo-> ;fchh //Data release time

weatherinfo->weather1 //Real-time weather

weatherinfo->temp1 //Real-time temperature

weatherinfo->wind1 // Real-time wind direction and wind speed

weatherinfo->index_d //Clothing index

< ;span 7. Complete code

<?<span php
<span /*<span *
  * wechat php test
  <span */<span //<span define your token<span define("TOKEN", "zhuojin"<span );
<span $wechatObj = <span new<span  wechatCallbackapiTest();
<span $wechatObj-><span responseMsg();
<span //valid();<span class<span  wechatCallbackapiTest
{<span /*checkSignature()){
            echo $echoStr;
            exit;
        }
    }<span */<span public <span function<span  responseMsg()
    {<span //<span get post data, May be due to the different environments<span $postStr = 
    <span $GLOBALS["HTTP_RAW_POST_DATA"<span ];

          <span //<span extract post data<span if (!<span empty(<span $postStr<span )){
                
                  <span $postObj = <span simplexml_load_string(<span $postStr, &#39;SimpleXMLElement&#39;,
                  <span  LIBXML_NOCDATA);<span $RX_TYPE = <span trim(<span $postObj-><span MsgType);
                  <span switch(<span $RX_TYPE<span )
                {<span case "text":<span $resultStr = <span $this->handleText(<span $postObj<span );
                <span break<span ;<span case "event":<span $resultStr = <span $this->handleEvent(
                <span $postObj<span );<span break<span ;<span default:<span $resultStr = "Unknow msg type: ".
                <span $RX_TYPE<span ;<span break<span ;
                }<span echo <span $resultStr<span ;
        }<span else<span  {<span echo ""<span ;<span exit<span ;
        }
    }<span public <span function handleText(<span $postObj<span )
    {<span $fromUsername = <span $postObj-><span FromUserName;<span $toUsername = <span $postObj->
    <span ToUserName;<span $keyword = <span trim(<span $postObj-><span Content);
    <span $time = <span time<span ();<span $textTpl = "<span %s0"<span ;             
    <span if(!<span empty( <span $keyword<span  ))
        {<span $msgType = "text"<span ;<span //<span 天气<span $str = mb_substr(<span $keyword,-2,2,"UTF-8"
        <span );<span $str_key = mb_substr(<span $keyword,0,-2,"UTF-8"<span );<span if(<span $str == &#39;天气&#39; && !
        <span empty(<span $str_key<span )){<span $data = <span $this->weather(<span $str_key<span );
        <span if(<span empty(<span $data-><span weatherinfo)){<span $contentStr = "抱歉,没有查到\"".
        <span $str_key."\"的天气信息!"<span ;
                } <span else<span  {<span $contentStr = "【".<span $data->weatherinfo->city."天气预报】\n".
                <span $data->weatherinfo->date_y." ".<span $data->weatherinfo->fchh."时发布"."\n\n实时天气\n".
                <span $data->weatherinfo->weather1." ".<span $data->weatherinfo->temp1." ".
                <span $data->weatherinfo->wind1."\n\n温馨提示:".<span $data->weatherinfo->index_d."\n\n明天\n".
                <span $data->weatherinfo->weather2." ".<span $data->weatherinfo->temp2." ".
                <span $data->weatherinfo->wind2."\n\n后天\n".<span $data->weatherinfo->weather3." ".
                <span $data->weatherinfo->temp3." ".<span $data->weatherinfo-><span wind3;
                }
            } <span else<span  {<span $contentStr = "感谢您关注【卓锦苏州】"."\n"."微信号:zhuojinsz"."\n".
            "卓越锦绣,名城苏州,我们为您提供苏州本地生活指南,苏州相关信息查询,做最好的苏州微信平台。"."\n".
            "目前平台功能如下:"."\n"."【1】 查天气,如输入:苏州天气"."\n"."
            【2】 查公交,如输入:苏州公交178"."\n"."【3】 翻译,如输入:翻译I love you"."\n"."
            【4】 苏州信息查询,如输入:苏州观前街"."\n"."更多内容,敬请期待..."<span ;
            }<span $resultStr = <span sprintf(<span $textTpl, <span $fromUsername, <span $toUsername, 
            <span $time, <span $msgType, <span $contentStr<span );
            <span echo <span $resultStr<span ;
        }<span else<span {<span echo "Input something..."<span ;
        }
    }<span public <span function handleEvent(<span $object<span )
    {<span $contentStr = ""<span ;<span switch (<span $object-><span Event)
        {<span case "subscribe":<span $contentStr = "感谢您关注【卓锦苏州】"."\n"."微信号:zhuojinsz"."\n"."
        卓越锦绣,名城苏州,我们为您提供苏州本地生活指南,苏州相关信息查询,做最好的苏州微信平台。"."\n"."
        目前平台功能如下:"."\n"."【1】 查天气,如输入:苏州天气"."\n"."
        【2】 查公交,如输入:苏州公交178"."\n"."【3】 翻译,如输入:翻译I love you"."\n"."
        【4】 苏州信息查询,如输入:苏州观前街"."\n"."更多内容,敬请期待..."<span ;<span break<span ;
        <span default :<span $contentStr = "Unknow Event: ".<span $object-><span Event;<span break<span ;
        }<span $resultStr = <span $this->responseText(<span $object, <span $contentStr<span );<span return 
        <span $resultStr<span ;
    }
    <span public <span function responseText(<span $object, <span $content, <span $flag=0<span )
    {<span $textTpl = "<span %s%d"<span ;<span $resultStr = <span sprintf(<span $textTpl, 
    <span $object->FromUserName, <span $object->ToUserName, <span time(), <span $content, <span $flag<span );
    <span return <span $resultStr<span ;
    }<span private <span function weather(<span $n<span ){<span include("weather_cityId.php"<span );
    <span $c_name=<span $weather_cityId[<span $n<span ];<span if(!<span empty(<span $c_name<span )){
    <span $json=<span file_get_contents("http://m.weather.com.cn/data/".<span $c_name.".html"<span );
    <span return json_decode(<span $json<span );
        } <span else<span  {<span return <span null<span ;
        }
    }<span private <span function<span  checkSignature()
    {<span $signature = <span $_GET["signature"<span ];<span $timestamp = <span $_GET["timestamp"<span ];
    <span $nonce = <span $_GET["nonce"<span ];    
                <span $token =<span  TOKEN;<span $tmpArr = <span array(<span $token, <span $timestamp, 
                <span $nonce<span );<span sort(<span $tmpArr<span );<span $tmpStr = <span implode( 
                <span $tmpArr<span  );<span $tmpStr = <span sha1( <span $tmpStr<span  );
        <span if( <span $tmpStr == <span $signature<span  ){<span return <span true<span ;
        }<span else<span {<span return <span false<span ;
        }
    }
}

?>

Regarding the city correspondence file weather_cityId.php, it has been updated to more than 400 cities and will continue to be added in the future. Please go to QQ group 213260412 to download it.

Please followZhuojin Suzhou WeChat public account, Zhuojin Suzhou is developed based on the SAE platform and is developed and tested for mainstream WeChat functions.

You can follow the Zhuojin Suzhou public account to conduct functional testing and obtain new application development.

1. Log in to the WeChat client, friends -> Add friends -> Search number -> zhuojinsz, find and follow.

2. Scan the QR code:

Zhuojin Suzhou Function list.


The above is the content of WeChat public platform development (5) Weather forecast function development_PHP tutorial. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

http://www.bkjia.com/PHPjc/440409.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/440409.htmlTechArticle’s previous articles discussed the opening and closing of the WeChat public platform Simple use is briefly introduced, but it does not involve problems in actual use, such as weather query, bus query, express query...


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor