1 Star 0 Fork 14

zh7908 / CI_wechat-php-sdk

forked from xcalder / CI_wechat-php-sdk 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Test.php 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
xcalder 提交于 2016-10-17 16:21 . 上传ci框架微信开发类库
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Test extends CI_Controller {
public function __construct() {
parent::__construct();
# 配置参数
$config = array(
'token' => 'openant',
'appid' => 'wxfc790e2eb9601add',
'appsecret' => '39ea2b90c55ec14462b1967909316895',
'encodingaeskey' => '',
'type' => 'user',
);
# 加载对应操作接口
//文件夹名注意大写
$this->load->library('Wechat/wechat_user', $config);
var_dump($this->wechat_user->getUserList());
}
public function index(){
/*
# 配置参数
$config = array(
'token' => 'openant',
'appid' => 'wxfc790e2eb9601add',
'appsecret' => '39ea2b90c55ec14462b1967909316895',
'encodingaeskey' => '',
);
# 加载对应操作接口
$this->wechat->get('User', $config);
//$userlist = $wechat->getUserList();
*/
//var_dump($userlist);
//var_dump($wechat->errMsg);
//var_dump($wechat->errCode);
}
}
微信
1
https://gitee.com/zh7908/CI_wechat-php-sdk.git
git@gitee.com:zh7908/CI_wechat-php-sdk.git
zh7908
CI_wechat-php-sdk
CI_wechat-php-sdk
master

搜索帮助