簡単な質問と多肢選択式
の回答を作成したいのです
が、結果は次の画像のようになります。コード:これは望ましくない結果の画像で
あり、これは私が試したコードです:
<?php
$token = "##################################";
$website = "https://api.telegram.org/bot".$token;
$array = array(array("1","2","3"));
$btn = array("keyboard" => $array,"hide_keyboard" => true,'selective' => true,);
$reply = json_encode($btn);
$url = $website."/sendmessage?chat_id=$chatIdtext=select : &reply_markup=".$reply;
file_get_contents($url);
?>