editMessageText($res); } } private static function index($chatId, $messageId): array { $keyboard = [ [ ['text' => '查看秘钥', 'callback_data' => 'secret@@view'], ['text' => '找回账号', 'callback_data' => 'secret@@retrieve'], ], [ ['text' => '返回', 'callback_data' => 'topUp@@home'], ] ]; $text = "秘钥管理\n"; $text .= "请选择业务类型"; return [ 'chat_id' => $chatId, 'text' => $text, 'message_id' => $messageId, 'reply_markup' => json_encode(['inline_keyboard' => $keyboard]) ]; } }