P
P
pesice43892021-01-31 13:05:29
PHP
pesice4389, 2021-01-31 13:05:29

How to make the buttons in the keyboard in one row in the telegram bot?

Hello!

$keyboard['keyboard'][] = array(
    (string) $i
);
sendTelegram('sendMessage', array(
    'chat_id' => $chat_id,
    'text' => $text,
    'resize_keyboard' => true,
    'reply_markup' => json_encode($keyboard)
));

Thus, a keyboard is created in which there is 1 button in each row
6016802db53a1695479327.png
. How to make the buttons go in one row?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
O
Oleg, 2021-01-31
@402d

Try one more level deeper.
there is a matrix of buttons. keyboard string. buttons in a row.
https://core.telegram.org/bots/api/#replykeyboardmarkup
Array of Array of KeyboardButton

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question