zafarjonovich/telegram 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

zafarjonovich/telegram

最新稳定版本:2.6.3

Composer 安装命令:

composer require zafarjonovich/telegram

包简介

Telegram helpers for every one

README 文档

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!'
])
?>

统计信息

  • 总下载量: 8.52k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 5
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2021-04-29