Overview

Packages

  • None
  • WxRobot
    • Admin
    • Cmd
    • CoreFunctions
    • Exends
    • Install
    • Table
    • Uninstall
    • WxSDK

Classes

  • ErrorCode
  • PKCS7Encoder
  • Prpcrypt
  • SHA1
  • Weixin_BaseCore
  • WeiXin_SDK
  • Weixin_Template
  • WXBizMsgCrypt
  • WxRobot_Admin
  • WxRobot_Admin_Menu_Extends
  • WxRobot_Admin_Menu_Instro
  • WxRobot_Admin_Menu_Menu
  • WxRobot_Admin_Menu_Records
  • WxRobot_Admin_Menu_Reply
  • WxRobot_Admin_Menu_Setting
  • WxRobot_Admin_Menu_Statistics
  • WxRobot_Cmd
  • WxRobot_Cmd_Event
  • WxRobot_Cmd_Event_User
  • WxRobot_Cmd_Text
  • WxRobot_Extends
  • WxRobot_Install
  • WxRobot_Robot
  • WxRobot_SDK
  • WxRobot_Table_Extends
  • WxRobot_Table_Menu
  • WxRobot_Table_Records
  • WxRobot_Table_Reply
  • WxRobot_Uninstall
  • WxRobot_Wp
  • XMLParse

Functions

  • wx_admin_log
  • wx_is_xml
  • wx_notice_msg
  • wx_parse_xml
  • wx_random_big_pic
  • wx_random_small_pic
  • wx_request_array
  • wx_request_decode
  • wx_request_is_encode
  • wx_request_xml
  • wx_send_encode
  • Overview
  • Package
  • Class
 1: <?php
 2: 
 3: /**
 4:  * error code 说明.
 5:  * <ul>
 6:  *    <li>-40001: 签名验证错误</li>
 7:  *    <li>-40002: xml解析失败</li>
 8:  *    <li>-40003: sha加密生成签名失败</li>
 9:  *    <li>-40004: encodingAesKey 非法</li>
10:  *    <li>-40005: appid 校验错误</li>
11:  *    <li>-40006: aes 加密失败</li>
12:  *    <li>-40007: aes 解密失败</li>
13:  *    <li>-40008: 解密后得到的buffer非法</li>
14:  *    <li>-40009: base64加密失败</li>
15:  *    <li>-40010: base64解密失败</li>
16:  *    <li>-40011: 生成xml失败</li>
17:  * </ul>
18:  */
19: class ErrorCode
20: {
21:     public static $OK = 0;
22:     public static $ValidateSignatureError = -40001;
23:     public static $ParseXmlError = -40002;
24:     public static $ComputeSignatureError = -40003;
25:     public static $IllegalAesKey = -40004;
26:     public static $ValidateAppidError = -40005;
27:     public static $EncryptAESError = -40006;
28:     public static $DecryptAESError = -40007;
29:     public static $IllegalBuffer = -40008;
30:     public static $EncodeBase64Error = -40009;
31:     public static $DecodeBase64Error = -40010;
32:     public static $GenReturnXmlError = -40011;
33: }
34: 
35: ?>
API documentation generated by ApiGen