是否可以在不发送文本或电报消息的情况下发送键盘

Is it possible to send a keyboard without sending text or a message at telegram

我尝试发送和删除消息但无法正常工作

if($new = $bot->sendMessage([
            'chat_id' => $call_chat_id,
            'text' => ' ',
            'parse_mode' => 'HTML',
            'reply_markup' => $choose,
        ])){
            $bot->deleteMessage([
                'chat_id' => $chat_id,
                'message_id' => $new['message_id']
            ]);
}

正在使用 Telegram-bot-simple

不,不发送消息就无法发送键盘