123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * Created by ChenTAO.
- * User: Administrator
- * Date: 15-10-8
- * Time: 下午1:27
- */
- include_once "config.php";
- include_once "WeiXin.php";
- $op = isset($_GET['op'])?$_GET['op']:'';
- $weixin = new WeiXin($appId,$appSecret,$token);
- //if(empty($op))$weixin->valid();
- //$weixin->init()->responseMsg();
- //$result = $weixin->init()->changUserGroup(array('o8tdvt6CdCdo1ZOY_SzYUSO8_o7o'),0);
- //$result = $weixin->init()->getUserInfo('o8tdvt6CdCdo1ZOY_SzYUSO8_o7o');
- /*$buttons = array(
- array(
- "type"=>"location_select",
- "name"=>"当前位置",
- "key"=>"mylocation"
- ),
- array(
- "type"=>"view",
- "name"=>"百度一下",
- "url"=>"http://www.baidu.com"
- ),
- array(
- 'name'=>'弹出二级',
- 'sub_button'=>array(
- array(
- "type"=>"pic_weixin",
- "name"=>"传图",
- "key"=>"upload"
- ),
- ),
- )
- );
- $weixin->init()->createMenu($buttons);
- */
- $result = $weixin->init()->receiveMsg();
- file_put_contents('test.txt',var_export($result,true));
|