php微信

来源:互联网 发布:matlab 生成cell矩阵 编辑:程序博客网 时间:2024/05/18 22:50
<?php  $wechatObj = new wechatCallAPI();  $getUrl = 'https://api.weixin.qq.com/cgi-bin/getcallbackip?access_token='.$wechatObj ->getAccessToken();  $res = $wechatObj->getWX($getUrl);  echo'<pre>';      var_dump($getUrl);      var_dump($res);  echo'</pre>';  class wechatCallAPI {    private $token = "weixin";    private $appId = "appId ";    private $appSecret = "appSecret ";//      获取AccessToken      public function getAccessToken(){            $AppId = $this->appId;            $AppSecret = $this->appSecret;            $getUrl = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$AppId.'&secret='.$AppSecret;            $ch = curl_init();            curl_setopt($ch, CURLOPT_URL, $getUrl);            curl_setopt($ch, CURLOPT_HEADER, 0);            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);            curl_setopt($ch, CURLOPT_TIMEOUT, 10);            $data = curl_exec($ch);            $response = json_decode($data,true);            return $response['access_token'];        }//get传输        public function getWX($getUrl){            $ch = curl_init();            curl_setopt($ch, CURLOPT_URL, $getUrl);            curl_setopt($ch, CURLOPT_HEADER, 0);            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);            curl_setopt($ch, CURLOPT_TIMEOUT, 10);            $data = curl_exec($ch);            $response = json_decode($data,true);            return $response;        }  }?>
原创粉丝点击