$input_array = json_decode(file_get_contents('php://input'),TRUE);
if ($input_array['callback_query']['data'] == 'Принять чат') {
sendMessage($chat_id, 'Вася Пупкин принял чат');
}
# bot.send_message(chat_id="841260346", text="Хочу позавтракать").
# bot.send_message(chat_id="841260346", text="Легкий"). #id чата заменяем на свой
# bot.send_message(chat_id="841260346", text="вопросов нет")
$btn1 = ['text' => 'Наш сайт', 'url' => 'https://google.com/'];
$btn2 = ['text' => 'Контакты', 'callback_data' => 'Контакты'];
$btn3 = ['text' => 'О нас', 'callback_data' => 'О нас'];
$inlineKeyboardButtons = [[$btn1], [$btn2, $btn3]]; // Наш сайт будет на первой строке, О нас и Контакты на второй
$inlineKeyboard = ['inline_keyboard' => $inlineKeyboardButtons];
$inlineKeyboard = json_encode($inlineKeyboard);
$url = 'https:// api. telegram. org/bot782651123:123123123123MjXXYLUsm_B0_15OMZoQ/sendMessage?chat_id=29949698&text=text_here&reply_markup='.$inlineKeyboard.