PHP7 implementation of Telegram API
| README.md | ||
| Telegram.class.php | ||
TelegramAPI-PHP
<?php
# include class
require('Telegram.class.php');
# instance
$bot = new TelegramBot('mytoken');
# SendMessage method
$bot->SendMessage('DestinationMsgId', 'Hello mom');
# easy!
?>