Telegram机器人
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
380 B

<?php
$cmds = array( // 命令列表
'test'
);
function route($cmd, $rawParam) { // 命令请求路由
switch ($cmd) {
case 'test':
test($rawParam);
break;
}
}
function routeCallback($cmd, $rawParam) { // 回调请求路由
switch ($cmd) {
case 'test':
testCallback($rawParam);
break;
}
}
?>