微信企业号开发php版2-文本讯息
程序员文章站
2022-03-30 21:01:40
...
微信企业号开发php版2-文本消息
返回用户发送的文本消息,修改sample.php
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 = ""; $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);}?> %s
相关文章
相关视频
上一篇: 微信获取地理位置的图文详解
下一篇: yii2.0 模型rules验证详解
推荐阅读