1. Go to this page and download the library: Download stajor/telegram-bot library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
stajor / telegram-bot example snippets
$api = new \Telegram\Bot\Api('BOT TOKEN');
$user = $api->getMe();
use Telegram\Bot\Command;
class StartCommand extends Command {
/**
* @var string Command Name
*/
protected $name = "start";
/**
* @var string Command Description
*/
protected $description = "Start Command to get you started";
/**
* @inheritdoc
*/
public function handle() {
// This will send a message using `sendMessage`
$this->replyWithMessage(['text' => 'Welcome to my Bot']);
// Trigger another command dynamically from within this command
$this->triggerCommand('help');
}
}
$handler = new CommandsHandler('BOT TOKEN');
$handler->addCommand(StartCommand::class);
$handler->handle();