544782275@qq.com 3 years ago
parent
commit
8af7554c79
2 changed files with 20 additions and 0 deletions
  1. 1 0
      application/api/controller/Login.php
  2. 19 0
      application/common.php

+ 1 - 0
application/api/controller/Login.php

@@ -142,6 +142,7 @@ class Login extends Base
         }
         $res = requestGet('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.config('app_program')['app_id'].'&secret='.config('app_program')['secret'].'&code='.$code.'&grant_type=authorization_code');
         $res = json_decode($res,true);
+        var_dump($res);exit();
         $user_info = requestGet('https://api.weixin.qq.com/sns/userinfo?access_token='.$res['access_token'].'&openid='.$res['openid']);
         $user_info = json_decode($user_info,true);
         $data['openid'] = $user_info['openid'];

+ 19 - 0
application/common.php

@@ -25,6 +25,25 @@ function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
     }
     return $day;
 }
+/**
+ * get请求
+ * @param $url
+ * @param string $msg
+ * @return mixed
+ */
+function requestGet($url , $msg = ''){
+    // 1. 初始化一个cURL会话
+    $ch = curl_init();
+    //设置选项,包括URL
+    curl_setopt($ch, CURLOPT_URL, $url);
+    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+    curl_setopt($ch, CURLOPT_HEADER, 0);
+    //执行并获取HTML文档内容
+    $response = curl_exec($ch);
+    // 4. 释放cURL句柄,关闭一个cURL会话
+    curl_close($ch);
+    return $response;
+}
 //获取全图片地址 $image_data
 function image_path($image_data){
     if(empty($image_data)){