123456789101112 |
- <?php
- /**
- * Created by ChenTAO.
- * User: Administrator
- * Date: 15-10-21
- * Time: 上午8:52
- */
- include_once "config.php";
- include_once "WeiXin.php";
- $weixin = new WeiXin($appId,$appSecret,$token);
- $result = $weixin->init()->getWebAuthUserInfo();
- print_r($result);
|