电报 Url 带有 php 的按钮示例代码

telegram Url Button example code with php

任何人都可以给我电报 URL 按钮的例子吗?

我现在不喜欢使用 inlinekeyboradButton 和 Url Bottun。

https://core.telegram.org/bots/api#inlinekeyboardbutton

请帮助我并给我非常简单的php代码

Class,代表InlineKeyboardButton:InlineKeyboardButton.php

用法示例:

<?php
    $btn = new InlineKeyboardButton([
        'text' => 'Example text',
        'url' => 'http://example.org'
    ]);

就这么简单。