2016-05-23 9 views
4

私はPHPコードテレグラムのボットAPIのカスタムキーボード - どのように垂直ボタンのリストを作る?

$keyboard = [ 
       'inline_keyboard' => [['text' => $name, 'callback_data' => $placeId]], 
      ]; 
       $markup = json_encode($keyboard, true); 
       $content = [ 
        'chat_id' => $chatId, 
        'reply_markup' => $markup, 
        'text' => 'Here is your places list. Choose one to get map with it.', 
        'disable_notification' => true 
       ]; 

を持っており、このコードのうちに、私はいくつかのインラインメニューボタンのリストが、インライン記載されているこのボタン、水平、およびテキスト名が似cuttedされてい「テキスト富栄..」 。

Telegramドキュメントのように、縦型のインラインメニューボタンを作成するにはどうすればよいですか? はここに例

image with example

答えて

6
-'inline_keyboard' => [['text' => $name, 'callback_data' => $placeId]], 
+'inline_keyboard' => [[['text' => $name1, 'callback_data' => $placeId1]], [['text' => $name2, 'callback_data' => $placeId2]]], 
+0

それは私の作品だとlinkと画像です。ありがとうございました –

関連する問題