BimoSora

inline_keyboard url

Oct 9th, 2020 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $keyboard = array(
  2. "inline_keyboard" => array(array(array(
  3. "text" => "button",
  4. "url" => "http://www.google.com"
  5. )))
  6. );
  7.  
  8. $keyboard = json_encode($keyboard, true);
  9.  
  10. $data = array(
  11. 'chat_id' => $chatid,
  12. 'text' => $text,
  13. 'reply_markup' => $keyboard,
  14. 'parse_mode' => 'html',
  15. );
Add Comment
Please, Sign In to add comment