add clear

This commit is contained in:
2021-04-06 15:20:39 +08:00
parent 80abb3a20a
commit bdafc011a6
23 changed files with 220 additions and 220 deletions
+9 -9
View File
@@ -53,10 +53,10 @@ class NewsManager extends AfficialAccount
* <li>将消息密文和安全签名打包成xml格式</li>
* </ol>
*
* @param $replyMsg string 公众平台待回复用户的消息,xml格式的字符串
* @param $timeStamp string 时间戳,可以自己生成,也可以用URL参数的timestamp
* @param $nonce string 随机串,可以自己生成,也可以用URL参数的nonce
* @param &$encryptMsg string 加密后的可以直接回复用户的密文,包括msg_signature, timestamp, nonce, encrypt的xml格式的字符串,
* @param $replyMsg 公众平台待回复用户的消息,xml格式的字符串
* @param $timeStamp 时间戳,可以自己生成,也可以用URL参数的timestamp
* @param $nonce 随机串,可以自己生成,也可以用URL参数的nonce
* @param &$encryptMsg 加密后的可以直接回复用户的密文,包括msg_signature, timestamp, nonce, encrypt的xml格式的字符串,
* 当return返回0时有效
*
* @return int 成功0,失败返回对应的错误码
@@ -100,11 +100,11 @@ class NewsManager extends AfficialAccount
* <li>对消息进行解密</li>
* </ol>
*
* @param $msgSignature string 签名串,对应URL参数的msg_signature
* @param $timestamp string 时间戳 对应URL参数的timestamp
* @param $nonce string 随机串,对应URL参数的nonce
* @param $postData string 密文,对应POST请求的数据
* @param &$msg string 解密后的原文,当return返回0时有效
* @param $msgSignature 签名串,对应URL参数的msg_signature
* @param $timestamp 时间戳 对应URL参数的timestamp
* @param $nonce 随机串,对应URL参数的nonce
* @param $postData 密文,对应POST请求的数据
* @param &$msg 解密后的原文,当return返回0时有效
*
* @return int 成功0,失败返回对应的错误码
*/