PHP7 implementation of Telegram API
Go to file
2019-10-04 09:33:10 +02:00
README.md Aggiornare 'README.md' 2019-05-23 09:18:48 +02:00
Telegram.class.php Retry added 2019-10-04 09:33:10 +02:00

TelegramAPI-PHP

<?php

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

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

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

# easy!
?>