12345678910111213141516171819202122232425262728293031 |
- <?php
- include("../wechat.class.php");
-
- function logdebug($text){
- file_put_contents('../data/log.txt',$text."\n",FILE_APPEND);
- };
- $options = array(
- 'token'=>'tokenaccesskey',
- 'debug'=>true,
- 'logcallback'=>'logdebug'
- );
- $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();
- }
|