Using php to develop WeChat attention events

不言
Release: 2023-04-01 07:10:02
Original
1505 people have browsed it

This article mainly introduces the events of concern in php WeChat development in detail. It has certain reference value. Interested friends can refer to it.

The examples in this article share with everyone the events of concern in php WeChat. The specific code is for your reference. The specific content is as follows

valid(); $wechatObj->responseMsg(); class wechatCallbackapiTest { public function valid() { $echoStr = $_GET["echostr"]; //valid signature , option if($this->checkSignature()){ echo $echoStr; exit; } } public function responseMsg() { //get post data, May be due to the different environments $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; //extract post data if (!empty($postStr)){ $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA); $fromUsername = $postObj->FromUserName; $toUsername = $postObj->ToUserName; $type = $postObj->MsgType; $customevent = $postObj->Event; $keyword = trim($postObj->Content); $time = time(); $textTpl = "   %s   0 "; if($type=="event" and $customrevent=="subscribe"){ $contentStr = "感谢你的关注\n回复1查看联系方式\n回复2查看最新资讯\n回复3查看法律文书"; $msgType = "text"; $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); echo $resultStr; } if(!empty( $keyword )) { $msgType = "text"; if($keyword=="1"){ $contentStr = "qiphon";} if($keyword=="2"){ $contentStr = "test 。";} if($keyword=="3"){ $contentStr = "test333";} $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); echo $resultStr; }else{ echo "Input something..."; } }else { echo ""; exit; } } private function checkSignature() { $signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"]; $token = TOKEN; $tmpArr = array($token, $timestamp, $nonce); sort($tmpArr); $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr ); if( $tmpStr == $signature ){ return true; }else{ return false; } } } ?>
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's study. More related content Please pay attention to PHP Chinese website!

Related recommendations:

Use PHP nested arrays to splice and parse json

About PHP strip_tags retains multiple HTML tags

The above is the detailed content of Using php to develop WeChat attention events. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!