From 6a70effc04f4561a2ed5ac9604e7cc013136942c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 1 Feb 2018 10:04:37 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test.php b/test.php index abc8575..7450b1d 100644 --- a/test.php +++ b/test.php @@ -35,9 +35,14 @@ try { $user = new \WeChat\User($config); // 4. 调用接口对象方法 - $list = $user->getUserList(); + $result = $user->getUserList(); echo '
';
-    var_export($list);
+    var_export($result);
+
+    // 5. 分配获取用户信息
+    foreach (array_chunk($result['data']['openid'], 100) as $item) {
+        $batch = $user->getBatchUserInfo($item);
+    }
 
 } catch (Exception $e) {