hoangnamitc/tele-command

支持Telegram命令

v1.2 2024-01-09 08:51 UTC

This package is auto-updated.

Last update: 2024-09-23 15:10:33 UTC


README

composer require hoangnamitc/tele-command

发送消息

replyWithMessage

$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')
);