返回用户发送的文本消息,修改sample.php
<?php//企业号返回用户的文本消息,替换模板的sample.php//@author 易伟//@date 2014-12-13//更改corpID,token和encodingAesKeyinclude_once "WXBizMsgCrypt.php";$encodingAesKey = "H8Ycg6SOGJbrBlfpZlLXe5cREFdzZhts5S0ZjKsbQrV";$token = "5rjINmS5M1fJa2I76GOs3qocL8CjMjm";$corpId = "xxxx";$wxcpt = new WXBizMsgCrypt($token, $encodingAesKey, $corpId);$sReqMsgSig = $_GET["msg_signature"];$sReqTimeStamp = $_GET["timestamp"];$sReqNonce =$_GET["nonce"];$sReqData = $GLOBALS["HTTP_RAW_POST_DATA"];$sMsg = ""; // 解析之后的明文$errCode = $wxcpt->DecryptMsg($sReqMsgSig, $sReqTimeStamp, $sReqNonce, $sReqData, $sMsg);if ($errCode == 0) { $postStr=$sMsg; //以下恢复为普通微信的操作 $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA); $fromUsername = $postObj->FromUserName; $toUsername = $postObj->ToUserName; $content = trim($postObj->Content); $time = time(); $textTpl = "<xml> <ToUserName><![CDATA[%s]]></ToUserName> <FromUserName><![CDATA[%s]]></FromUserName> <CreateTime>%s</CreateTime> <MsgType><![CDATA[text]]></MsgType> <Content><![CDATA[%s]]></Content> </xml>"; $sRespData= sprintf($textTpl, $fromUsername, $toUsername, $time, $content); //加密输出 $sEncryptMsg = ""; //xml格式的密文$errCode = $wxcpt->EncryptMsg($sRespData, $sReqTimeStamp, $sReqNonce, $sEncryptMsg);if ($errCode == 0) { echo $sEncryptMsg; } else { print("ERR: " . $errCode . "\n\n"); // exit(-1); } } else { print("ERR: " . $errCode . "\n\n"); //exit(-1);}?>
微信是一款手机通信软件,支持通过手机网络发送语音短信、视频、图片和文字。微信可以单聊及群聊,还能根据地理位置找到附近的人,带给大家全新的移动沟通体验,有需要的小伙伴快来保存下载体验吧!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号