search
HomeBackend DevelopmentPHP Tutorial微信公众平台开发入门-PHP,实现自动恢复文本,图文,点击事件

微信公众平台开发入门--PHP,实现自动回复文本,图文,点击事件

一页代码实现微信基本回复和点击事件功能,部署上去sae或者bae,妥妥的基本免费的服务器

不懂代码都基本每个人都可以做自己的微信公众号了羡慕


<?phpdefine ("TOKEN", "mzh");        //换成你的token$wechatObj = new wechatCallbackapiTest();if (isset($_GET['echostr'])) {     //验证微信    $wechatObj->valid();}else{                     //回复消息    $wechatObj->responseMsg();}class wechatCallbackapiTest{    public function valid()    {        $echoStr = $_GET["echostr"];        if($this->checkSignature()){            echo $echoStr;            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;        }    }    //回复消息    public function responseMsg()	{    $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];    if (!empty($postStr)){        $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);        $RX_TYPE = trim($postObj->MsgType);        switch ($RX_TYPE)        {            case "text":                $resultStr = $this->receiveText($postObj);                break;            case "image":                $resultStr = $this->receiveImage($postObj);                break;            case "location":                $resultStr = $this->receiveLocation($postObj);                break;            case "voice":                $resultStr = $this->receiveVoice($postObj);                break;            case "video":                $resultStr = $this->receiveVideo($postObj);                break;            case "link":                $resultStr = $this->receiveLink($postObj);                break;            case "event":                $resultStr = $this->receiveEvent($postObj);                break;            default:                $resultStr = "unknow msg type: ".$RX_TYPE;                break;        }        echo $resultStr;    }else {        echo "";        exit;    }	}        //接收文本消息    private function receiveText($object)    {        $keyword = trim($object->Content);        $url = "http://api100.duapp.com/movie/?appkey=DIY_miaomiao&name=".$keyword;        $output = file_get_contents($url,$keyword);        $contentStr = json_decode($output, true);        if (is_array($contentStr)){            $resultStr = $this->transmitNews($object, $contentStr);        }else{            $resultStr = $this->transmitText($object, $contentStr);        }        return $resultStr;    }        //接收事件,关注等    private function receiveEvent($object)    {        $contentStr = "";        switch ($object->Event)        {            case "subscribe":                $contentStr = "你关注了我";    //关注后回复内容                break;            case "unsubscribe":                $contentStr = "";                break;            case "CLICK":                $contentStr =  $this->receiveClick($object);    //点击事件                break;            default:                $contentStr = "receive a new event: ".$object->Event;                break;        }                return $contentStr;    }        //接收图片    private function receiveImage($object)    {        $contentStr = "你发送的是图片,地址为:".$object->PicUrl;        $resultStr = $this->transmitText($object, $contentStr);        return $resultStr;    }            //接收语音    private function receiveVoice($object)    {        $contentStr = "你发送的是语音,媒体ID为:".$object->MediaId;        $resultStr = $this->transmitText($object, $contentStr);        return $resultStr;    }        //接收视频    private function receiveVideo($object)    {        $contentStr = "你发送的是视频,媒体ID为:".$object->MediaId;        $resultStr = $this->transmitText($object, $contentStr);        return $resultStr;    }        //位置消息    private function receiveLocation($object)    {        $contentStr = "你发送的是位置,纬度为:".$object->Location_X.";经度为:".$object->Location_Y.";缩放级别为:".$object->Scale.";位置为:".$object->Label;        $resultStr = $this->transmitText($object, $contentStr);        return $resultStr;    }        //链接消息    private function receiveLink($object)    {        $contentStr = "你发送的是链接,标题为:".$object->Title.";内容为:".$object->Description.";链接地址为:".$object->Url;        $resultStr = $this->transmitText($object, $contentStr);        return $resultStr;    }          <p> //点击菜单消息    private function receiveClick($object)    {         switch ($object->EventKey)         {             case "1":             $contentStr = "猫咪酱个性DIY服装,我们专业定制个性【班服,情侣装,亲子装等,有长短T恤,卫衣,长短裤】 来图印制即可,给你温馨可爱的TA,有事可直接留言微信";             break;                          case "2":             $contentStr = "你点击了菜单: ".$object->EventKey;             break;                          case "3":             $contentStr = "是傻逼";             break;                          default:             $contentStr = "你点击了菜单: ".$object->EventKey;             break;         }                        //两种回复        if (is_array($contentStr)){            $resultStr = $this->transmitNews($object, $contentStr);        }else{            $resultStr = $this->transmitText($object, $contentStr);        }        return  $resultStr;    }                                                        //回复文本消息    private function transmitText($object, $content)    {        $textTpl = "<xml>        <tousername></tousername>        <fromusername></fromusername>        <createtime>%s</createtime>        <msgtype></msgtype>        <content></content>        </xml>";        $resultStr = sprintf($textTpl, $object->FromUserName, $object->ToUserName, time(), $content);        return $resultStr;    }</p><p>                        //回复图文    private function transmitNews($object, $arr_item)    {        if(!is_array($arr_item))            return;</p><p>        $itemTpl = "    <item>        <title></title>        <description></description>        <picurl></picurl>        <url></url>     </item>";        $item_str = "";        foreach ($arr_item as $item)            $item_str .= sprintf($itemTpl, $item['Title'], $item['Description'], $item['PicUrl'], $item['Url']);</p><p>        $newsTpl = "<xml>        <tousername></tousername>        <fromusername></fromusername>        <createtime>%s</createtime>        <msgtype></msgtype>        <content></content>        <articlecount>%s</articlecount>        <articles>        $item_str</articles>        </xml>";</p><p>        $resultStr = sprintf($newsTpl, $object->FromUserName, $object->ToUserName, time(), count($arr_item));        return $resultStr;    }            //音乐消息    private function transmitMusic($object, $musicArray, $flag = 0)    {        $itemTpl = "<music>        <title></title>        <description></description>        <musicurl></musicurl>        <hqmusicurl></hqmusicurl>        </music>";</p><p>        $item_str = sprintf($itemTpl, $musicArray['Title'], $musicArray['Description'], $musicArray['MusicUrl'], $musicArray['HQMusicUrl']);</p><p>        $textTpl = "<xml>        <tousername></tousername>        <fromusername></fromusername>        <createtime>%s</createtime>        <msgtype></msgtype>        $item_str        <funcflag>%d</funcflag>        </xml>";</p><p>        $resultStr = sprintf($textTpl, $object->FromUserName, $object->ToUserName, time(), $flag);        return $resultStr;    }            }?></p>
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
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment