PHP7 implementation of Telegram API
Go to file
2020-04-03 18:41:16 +02:00
README.md Aggiornare 'README.md' 2019-05-23 09:18:48 +02:00
Telegram.class.php Fix bugs in SendVideo, SendImage 2020-04-03 18:41:16 +02:00

TelegramAPI-PHP

<?php

# include class 
require('Telegram.class.php');

# instance
$bot = new TelegramBot('mytoken');

# SendMessage method
$bot->SendMessage('DestinationMsgId', 'Hello mom');

# easy!
?>