首页  >  文章  >  php教程  >  微信开发类库

微信开发类库

WBOY
WBOY原创
2016-06-06 19:38:561144浏览

/***微信公众平台PHP-SDK,官方API部分 *@authordodgedodgepudding@gmail.com * @link https://github.com/dodgepudding/wechat-php-sdk * @version 1.2 * usage: * $options = array( *token=tokenaccesskey, //填写你设定的key *encodingaeskey=encodingaes

/**
 *  微信公众平台PHP-SDK, 官方API部分
 *  @author  dodge 
* @link https://github.com/dodgepudding/wechat-php-sdk
* @version 1.2
* usage:
* $options = array(
*      'token'=>'tokenaccesskey', //填写你设定的key
*      'encodingaeskey'=>'encodingaeskey', //填写加密用的EncodingAESKey
*      'appid'=>'wxdk1234567890', //填写高级调用功能的app id
*      'appsecret'=>'xxxxxxxxxxxxxxxxxxx' //填写高级调用功能的密钥
*    );
*   $weObj = new Wechat($options);
* $weObj->valid();
* $type = $weObj->getRev()->getRevType();
* switch($type) {
*     case Wechat::MSGTYPE_TEXT:
*       $weObj->text("hello, I'm wechat")->reply();
*       exit;
*       break;
*     case Wechat::MSGTYPE_EVENT:
*       ....
*       break;
*     case Wechat::MSGTYPE_IMAGE:
*       ...
*       break;
*     default:
*       $weObj->text("help info")->reply();
* }
*
* //获取菜单操作:
* $menu = $weObj->getMenu();
* //设置菜单
* $newmenu = array(
*     "button"=>
*       array(
*         array('type'=>'click','name'=>'最新消息','key'=>'MENU_KEY_NEWS'),
*         array('type'=>'view','name'=>'我要搜索','url'=>'http://www.baidu.com'),
*         )
*     );
* $result = $weObj->createMenu($newmenu);
 */ <无>
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn