diff --git a/test.php b/Test/config.php similarity index 67% rename from test.php rename to Test/config.php index 7450b1d..07c8688 100644 --- a/test.php +++ b/Test/config.php @@ -12,11 +12,7 @@ // | github开源项目:https://github.com/zoujingli/WeChatDeveloper // +---------------------------------------------------------------------- -// 1. 手动加载入口文件 -include 'include.php'; - -// 2. 准备公众号配置参数 -$config = [ +return [ 'token' => 'test', 'appid' => 'wx60a43dd8161666d4', 'appsecret' => '71308e96a204296c57d7cd4b21b883e8', @@ -27,28 +23,4 @@ $config = [ // 配置商户支付双向证书目录 'ssl_key' => '', 'ssl_cer' => '', -]; - -try { - - // 3. 实例对应的接口对象 - $user = new \WeChat\User($config); - - // 4. 调用接口对象方法 - $result = $user->getUserList(); - echo '
';
-    var_export($result);
-
-    // 5. 分配获取用户信息
-    foreach (array_chunk($result['data']['openid'], 100) as $item) {
-        $batch = $user->getBatchUserInfo($item);
-    }
-
-} catch (Exception $e) {
-
-    // 出错啦,处理下吧
-    echo $e->getMessage() . PHP_EOL;
-
-}
-
-
+];
\ No newline at end of file
diff --git a/Test/menu.php b/Test/menu.php
new file mode 100644
index 0000000..31f18b0
--- /dev/null
+++ b/Test/menu.php
@@ -0,0 +1,36 @@
+get();
+    
+    var_export($result);
+
+} catch (Exception $e) {
+
+    // 出错啦,处理下吧
+    echo $e->getMessage() . PHP_EOL;
+
+}
\ No newline at end of file
diff --git a/Test/qrcode.php b/Test/qrcode.php
new file mode 100644
index 0000000..e7daa79
--- /dev/null
+++ b/Test/qrcode.php
@@ -0,0 +1,40 @@
+create('场景内容');
+    echo var_export($result, true) . PHP_EOL;
+
+    // 5. 创建二维码链接
+    $url = $wechat->url($result['ticket']);
+    echo var_export($url, true);
+
+
+} catch (Exception $e) {
+
+    // 出错啦,处理下吧
+    echo $e->getMessage() . PHP_EOL;
+
+}
\ No newline at end of file
diff --git a/Test/script.php b/Test/script.php
new file mode 100644
index 0000000..8986cf2
--- /dev/null
+++ b/Test/script.php
@@ -0,0 +1,36 @@
+getJsSign('http://a.com/test.php');
+
+    var_export($result);
+
+} catch (Exception $e) {
+
+    // 出错啦,处理下吧
+    echo $e->getMessage() . PHP_EOL;
+
+}
\ No newline at end of file
diff --git a/Test/user.php b/Test/user.php
new file mode 100644
index 0000000..5517afa
--- /dev/null
+++ b/Test/user.php
@@ -0,0 +1,42 @@
+getUserList();
+
+    var_export($result);
+
+    // 5. 批量获取用户资料
+    foreach (array_chunk($result['data']['openid'], 100) as $item) {
+        $userList = $wechat->getBatchUserInfo($item);
+        var_export($userList);
+    }
+
+} catch (Exception $e) {
+
+    // 出错啦,处理下吧
+    echo $e->getMessage() . PHP_EOL;
+
+}
\ No newline at end of file
diff --git a/WeChat/Contracts/WeChat.php b/WeChat/Contracts/WeChat.php
index 4a66d85..1d048ad 100644
--- a/WeChat/Contracts/WeChat.php
+++ b/WeChat/Contracts/WeChat.php
@@ -74,7 +74,7 @@ class WeChat
         if (!empty($this->access_token)) {
             return $this->access_token;
         }
-        $cacheKey = $this->config->get('appid') . '_accesstoken';
+        $cacheKey = $this->config->get('appid') . '_access_token';
         $this->access_token = Tools::getCache($cacheKey);
         if (!empty($this->access_token)) {
             return $this->access_token;
@@ -95,7 +95,7 @@ class WeChat
     public function delAccessToken()
     {
         $this->access_token = '';
-        return Tools::delCache($this->config->get('appid') . '_accesstoken');
+        return Tools::delCache($this->config->get('appid') . '_access_token');
     }
 
     /**
diff --git a/WeChat/Script.php b/WeChat/Script.php
index 5b8f3b6..4d66aa1 100644
--- a/WeChat/Script.php
+++ b/WeChat/Script.php
@@ -35,7 +35,7 @@ class Script extends WeChat
     public function delTicket($type = 'jsapi', $appid = null)
     {
         is_null($appid) && $appid = $this->config->get('appid');
-        $cache_name = "WeChat_{$type}_ticket_{$appid}";
+        $cache_name = "{$appid}_ticket_{$type}";
         Tools::delCache($cache_name);
     }
 
@@ -50,7 +50,7 @@ class Script extends WeChat
     public function getTicket($type = 'jsapi', $appid = null)
     {
         is_null($appid) && $appid = $this->config->get('appid');
-        $cache_name = "WeChat_{$type}_ticket_{$appid}";
+        $cache_name = "{$appid}_ticket_{$type}";
         $ticket = Tools::getCache($cache_name);
         if (empty($ticket)) {
             $url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=ACCESS_TOKEN&type={$type}";