2017 © Pedro Peláez
 

library wechat

wechat helper

image

sfsoft/wechat

wechat helper

  • Thursday, June 28, 2018
  • by ZEKI
  • Repository
  • 1 Watchers
  • 1 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 7 Versions
  • 29 % Grown

The README.md

composer 安装

composer require sfsoft/wechat

wechat helper

这是一个微信公众平台基础功能Lib库。
用于微信公众号获取JS授权以及 open_id 获取。

获取 OPEN_ID

//获取 OPEN_ID
$wechat = new \sfsoft\wechat\base('app_id', 'app_secret');
$detail = $wechat->getOpenID();

获取用户详细信息并存储到数据库

$wechat = new \sfsoft\wechat\base('app_id', 'app_secret');
$wechat->dataBaseConfig =  array(
    'driver' => 'mysql',
    'host' => 'localhost',
    'port' => '3306',
    'database' => 'wechat_manager',
    'username' => 'demo',
    'password' => 'demo',
    'charset' => 'utf8mb4',
    'collation' => 'utf8mb4_bin',
    'prefix' => '',
);
$detail = $wechat->getUserDetail();

获取 JS 签名包

$wechat = new \sfsoft\wechat\jsapi('app_id', 'app_secret');
$detail = $wechat->getSignPackage('http://www.example.com');

The Versions

28/06 2018

dev-master

9999999-dev

wechat helper

  Sources   Download

MIT

The Requires

 

by Avatar ZEKI

30/05 2018

0.6

0.6.0.0

wechat helper

  Sources   Download

MIT

The Requires

 

by Avatar ZEKI

22/05 2018

0.5

0.5.0.0

wechat helper

  Sources   Download

MIT

The Requires

  • php >=5.3

 

by Avatar ZEKI

12/04 2018

0.4

0.4.0.0

wechat helper

  Sources   Download

MIT

The Requires

  • php >=5.6

 

by Avatar ZEKI

12/04 2018

0.3

0.3.0.0

wechat helper

  Sources   Download

MIT

The Requires

  • php >=5.6

 

by Avatar ZEKI

12/04 2018

0.2

0.2.0.0

wechat helper

  Sources   Download

MIT

The Requires

  • php >=5.6

 

by Avatar ZEKI

12/04 2018

0.1

0.1.0.0

wechat helper

  Sources   Download

The Requires

  • php >=5.6

 

by Avatar ZEKI