hoangnamitc / tele-command
支持Telegram命令
v1.2
2024-01-09 08:51 UTC
Requires
README
composer require hoangnamitc/tele-command
发送消息
$result = $this->replyWithMessage([
'text' => $this->getDescription(),
'parse_mode' => 'markdown',
]);
是
sendMessage()
的别名
更多信息请参阅: sendMessage
删除消息
- 删除最近的发送者消息
$this->deleteMess(
$this->getChatId(),
$this->getMessId()
);
- 在 $result 后面写上删除bot返回的消息
$this->deleteMess(
$this->getChatId(),
data_get($result, 'message_id')
);