"🔙返回", 'callback_data' => "Tutorial@@home"] ]]; return [ 'chat_id' => $chatId, 'text' => $text, // 'parse_mode' => 'MarkdownV2', 'message_id' => $messageId, 'reply_markup' => json_encode(['inline_keyboard' => $keyboard]) ]; } public function index($chatId) { $keyboard = [ [ ['text' => "💰️充值教程", 'callback_data' => "Tutorial@@0"], ['text' => "💸提现教程", 'callback_data' => "Tutorial@@1"] ], [ ['text' => "🏡创建房间教程", 'callback_data' => "Tutorial@@2"], ['text' => "📊如何结算?", 'callback_data' => "Tutorial@@3"] ] ]; return [ 'chat_id' => $chatId, 'text' => "📖 请选择你想了解的帮助内容:\n", 'reply_markup' => json_encode(['inline_keyboard' => $keyboard]) ]; } }