コード例 #1
0
ファイル: class.act.wx.php プロジェクト: GStepOne/CI
 /**
  * 合法性验证
  * 文档地址:http://mp.weixin.qq.com/wiki/index.php?title=%E6%8E%A5%E5%85%A5%E6%8C%87%E5%8D%97
  */
 function _yanzhengAct()
 {
     define("TOKEN", "cailai123");
     $wechatObj = new wechatCallbackapiTest();
     $wechatObj->valid();
     exit;
 }
コード例 #2
0
ファイル: wx_sample.php プロジェクト: sirxun/uploadImag
<?php

/**
 * wechat php test
 */
//define your token
define("TOKEN", "baigungun");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();
class wechatCallbackapiTest
{
    public function valid()
    {
        $echoStr = $_GET["echostr"];
        //valid signature , option
        if ($this->checkSignature()) {
            echo $echoStr;
            exit;
        }
    }
    public function responseMsg()
    {
        //get post data, May be due to the different environments
        $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
        //extract post data
        if (!empty($postStr)) {
            /* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,
               the best way is to check the validity of xml by yourself */
            libxml_disable_entity_loader(true);
            $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
            $fromUsername = $postObj->FromUserName;
コード例 #3
0
ファイル: Jizipu.php プロジェクト: codekissyoung/kanjiebao
 public function index()
 {
     /*{{{*/
     $wechatObj = new wechatCallbackapiTest();
     if (isset($_GET['echostr'])) {
         $wechatObj->valid();
     } else {
         $wechatObj->responseMsg();
     }
 }