zafarjonovich/php-helpers

There is no license information available for the latest version (0.0.1) of this package.

PHP helpers

0.0.1 2021-08-02 13:46 UTC

This package is auto-updated.

Last update: 2024-04-29 04:53:38 UTC


README

Assalomu aleykum. These components will help you work with the telegram bot api in your own project. It is very simple to use.

Installation

The preferred way to install this extension is through composer.

Either run

composer require zafarjonovich/telegram

or add

"zafarjonovich/telegram": "*"

to the require section of your composer.json file.

Usage

All methods in the Telegram bot api can be used as follows

<?php

require_once 'vendor/autoload.php';

$bot_token = '1111111:AAABBBBCCCDDDDEEEERRRRTTTT';

$telegram = new \zafarjonovich\Telegram\BotApi($bot_token);

$telegram->query('sendMessage',[
    'chat_id' => 1122,
    'text' => 'Hello world!'
]);

$telegram->query('sendPhoto',[
    'chat_id' => 1122,
    'photo' => 'photo_url'
]);

?>

Several telegram methods have been written. The required parameters in the bot api method are given as parameters in the handler method, and the extensions are added to the optional fields.

Written methods

sendMessage,deleteMessage,getChatMember,getChat,exportChatInviteLink,editMessageText,answerCallback,forwardMessage,sendPhoto,sendVideo,sendContact,sendDocument,sendLocation,getMe,getWebHookInfo,getUpdates

Usage written methods
<?php

require_once 'vendor/autoload.php';

$bot_token = '1111111:AAABBBBCCCDDDDEEEERRRRTTTT';

$telegram = new \zafarjonovich\Telegram\BotApi($bot_token);

$telegram->sendMessage($chat_id,$text);

$telegram->sendMessage($chat_id,$text,[
    'parse_mode' => 'markdown'
]);

$telegram->sendPhoto($chat_id,$photo,[
    'caption' => 'Hello world!'
])
?>