<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ThinkChat2.0新版上線,更智能更精彩,支持會話、畫圖、視頻、閱讀、搜索等,送10W Token,即刻開啟你的AI之旅 廣告
                1.在項目根目錄下的/Application/Home/Controller文件夾中的IndexController.class.php文件,書寫代碼 ~~~ <?php namespace Home\Controller; use Think\Controller; use Com\Wechat; use Com\WechatAuth; class IndexController extends Controller { public function index(){ $token="zhangyouwu"; /* 加載微信 */ $wechat = new Wechat($token); /* 獲取請求信息 */ $data = $wechat->request(); if($data && is_array($data)){ switch($data['MsgType']){ case "text": $this->Text($wechat,$data); } } } //回復文本消息 private function Text($wechat,$data){ //回復文本消息 if(strstr($data['Content'],"文本")){ $text="我正在使用Thinkphp開發微信"; $this->logger("發送信息:\n".$text); $wechat-> replyText($text); }else if(strstr($data['Content'],"myself")){ $this->users($wechat,$data); } } //獲取用戶信息 private function users($wechat,$data){ $openid=$data['FromUserName']; $appid="wx165112bf167af76c"; $appSecret="c65b22bfcf03fdd98504eac299701b03"; $token=session('token'); if($token){ $WechatAuth=new WechatAuth($appid,$appSecret,$token); }else{ $WechatAuth=new WechatAuth($appid,$appSecret); $accsseToken=$WechatAuth->getAccessToken(); $token=$accsseToken['access_token']; session('token',$token); } $user=$WechatAuth->userInfo($openid); $text="你的openid是:".$user['openid']."\n你的昵稱是:".$user['nickname']."\n你的性別是:".$user['sex']."\n你的城市是:" .$user['city']."\n你所在的國家是:".$user['country']."\n你所在的省份是:".$user['province']; $this->logger("發送用戶的信息:\n".$text); $wechat->replyText($text); } //網頁授權獲取用戶基本信息 public function webUsers(){ $appid="wx165112bf167af76c"; $appSecret="c65b22bfcf03fdd98504eac299701b03"; $WechatAuth=new WechatAuth($appid,$appSecret); if($_GET['iscode']){ $url="http://zyw.gzzysd.com/index.php/Home/Index/webUsers";//zyw.gzzysd.com為微信公眾平臺的授權回調頁面域名 $result=$WechatAuth->getRequestCodeURL($url); $result; header("Location:{$result}");//跳轉地址 }else if($_GET['code']){ $user=$WechatAuth->getAccessToken('code',$_GET['code']); var_dump($user); } /* $user=$WechatAuth->userInfo($openid); $text="你的openid是:".$user['openid']."\n你的昵稱是:".$user['nickname']."\n你的性別是:".$user['sex']."\n你的城市是:" .$user['city']."\n你所在的國家是:".$user['country']."\n你所在的省份是:".$user['province']; $this->logger("發送用戶的信息:\n".$text); $wechat->replyText($text);*/ } //日志 private function logger($content){//存儲日志 $logSize=100000;//定義日志大小 $log="log.txt";//定義日志名字 if(file_exists($log)&&filesize($log)>$logSize){//如果日志存在并且大于定義的大小 unlink($log);//刪除 } //文件寫入1.名字2.內容,+時間防止重復3.內容往后加而不是覆蓋 file_put_contents($log,date('H:i:s')." ".$content."\n",FILE_APPEND); } } ~~~ 在上節新填改代碼部分 ![](https://box.kancloud.cn/3eb4375cacba2a90abef37a61c966839_515x145.png) 在微信web開發工具中輸入地址(http://域名/index.php/Home/Index/webUsers/iscode/1),得到結果: ![](https://box.kancloud.cn/001c7d0d4d526c9082101318c7525db6_1071x577.png) 點擊確定登錄 ![](https://box.kancloud.cn/86e310456d54f14dcfc342e2fc9dfcd1_326x218.png) 再次更改根目錄下的/Application/Home/Controller文件夾中的IndexController.class.php文件,書寫代碼為 ~~~ <?php namespace Home\Controller; use Think\Controller; use Com\Wechat; use Com\WechatAuth; class IndexController extends Controller { public function index(){ $token="zhangyouwu"; /* 加載微信 */ $wechat = new Wechat($token); /* 獲取請求信息 */ $data = $wechat->request(); if($data && is_array($data)){ switch($data['MsgType']){ case "text": $this->Text($wechat,$data); } } } //回復文本消息 private function Text($wechat,$data){ //回復文本消息 if(strstr($data['Content'],"文本")){ $text="我正在使用Thinkphp開發微信"; $this->logger("發送信息:\n".$text); $wechat-> replyText($text); }else if(strstr($data['Content'],"myself")){ $this->users($wechat,$data); } } //獲取用戶信息 private function users($wechat,$data){ $openid=$data['FromUserName']; $appid="wx165112bf167af76c"; $appSecret="c65b22bfcf03fdd98504eac299701b03"; $token=session('token'); if($token){ $WechatAuth=new WechatAuth($appid,$appSecret,$token); }else{ $WechatAuth=new WechatAuth($appid,$appSecret); $accsseToken=$WechatAuth->getAccessToken(); $token=$accsseToken['access_token']; session('token',$token); } $user=$WechatAuth->userInfo($openid); $text="你的openid是:".$user['openid']."\n你的昵稱是:".$user['nickname']."\n你的性別是:".$user['sex']."\n你的城市是:" .$user['city']."\n你所在的國家是:".$user['country']."\n你所在的省份是:".$user['province']; $this->logger("發送用戶的信息:\n".$text); $wechat->replyText($text); } //網頁授權獲取用戶基本信息 public function webUsers(){ $appid="wx165112bf167af76c"; $appSecret="c65b22bfcf03fdd98504eac299701b03"; $WechatAuth=new WechatAuth($appid,$appSecret); if($_GET['iscode']){ $url="http://zyw.gzzysd.com/index.php/Home/Index/webUsers";//zyw.gzzysd.com為微信公眾平臺的授權回調頁面域名 $result=$WechatAuth->getRequestCodeURL($url); $result; header("Location:{$result}");//跳轉地址 }else if($_GET['code']){ header('Content-type:text/html;charset=utf-8'); $user=$WechatAuth->getAccessToken('code',$_GET['code']); $openid=$user['openid'];//$user是一個數組,直接獲取里面的openid $users=$WechatAuth->getUserInfo($openid); var_dump($users); } /* $user=$WechatAuth->userInfo($openid); $text="你的openid是:".$user['openid']."\n你的昵稱是:".$user['nickname']."\n你的性別是:".$user['sex']."\n你的城市是:" .$user['city']."\n你所在的國家是:".$user['country']."\n你所在的省份是:".$user['province']; $this->logger("發送用戶的信息:\n".$text); $wechat->replyText($text);*/ } //日志 private function logger($content){//存儲日志 $logSize=100000;//定義日志大小 $log="log.txt";//定義日志名字 if(file_exists($log)&&filesize($log)>$logSize){//如果日志存在并且大于定義的大小 unlink($log);//刪除 } //文件寫入1.名字2.內容,+時間防止重復3.內容往后加而不是覆蓋 file_put_contents($log,date('H:i:s')." ".$content."\n",FILE_APPEND); } } ~~~ 與上面修改與新添部分代碼 ![](https://box.kancloud.cn/f714c8c080b53ae353258f0004e32462_572x153.png) 在微信web開發工具輸入地址(http://域名/index.php/Home/Index/webUsers/iscode/1),結果為微信的信息: ![](https://box.kancloud.cn/dc6e848a90db9ba0c1b9fc56b061345c_797x330.png) 本節源碼下載(下載密碼:s2eq) [源碼下載](https://pan.baidu.com/s/16DGd6IyQOb8FxJfRdUNGjw)
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看