1 2 3 4 5 6 7 |
<pre class="decode:1 " >$keyboard = [ 'inline_keyboard' => [ [ ['text' => 'forward me to groups', 'callback_data' => 'someString'] ] ] ]; |
1 2 3 4 5 6 7 8 9 10 11 |
<pre class="decode:1 " >$keyboard = array( "inline_keyboard" => array(array(array( "text" => "button", "callback_data" => "button_0" ))) ); $postfields = array( 'chat_id' => "$chat_id", 'text' => "$reply", 'reply_markup' => json_encode($keyboard) ); |
发表评论
要发表评论,您必须先登录。