• 大小: 0.96KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 标签: 端口  

资源简介

php 微信 调用测试接口 示例

资源截图

代码片段和文件信息

/**
  * wechat php test
  */

//define your token
define(“TOKEN“ “weixin“);
$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)){
                
               $postObj = simplexml_load_string($postStr ‘SimplexmlElement‘ LIBxml_NOCDATA);
                $fromUsername = $postObj->FromUserName;
                $toUsername = $postObj->ToUserName;
        

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2027  2014-03-04 21:04  wx_sample.php

评论

共有 条评论

相关资源