14 lines
270 B
PHP
Raw Normal View History

2015-06-29 22:13:58 +08:00
<?php
2015-07-08 16:13:12 +08:00
$BOT = new Base;
2015-06-29 22:13:58 +08:00
$GET = json_decode(file_get_contents("php://input"),true);
//is group?
if ($GET['message']['chat']['id'] > 0) {
$isgroup = false;
}else{
$isgroup = true;
}
//reply to...
$from = $GET['message']['chat']['id'];
$text = $GET['message']['text'];