上传者: 42169674
|
上传时间: 2022-11-25 15:32:20
|
文件大小: 12KB
|
文件类型: ZIP
TelegramBot-PHP库
TelegramBot是PHP中的一个非官方库,可的
安装
通过作曲家
$ composer require paranoiasystem/telegrambot-php-library
用法
发信息
<?php
namespace Telegram ;
require_once __DIR__ . '/vendor/autoload.php' ;
$ bot = new TelegramBot ( 'YOUR_BOT_API_TOKEN' , 'YOUR_BOT_USERNAME' );
$ bot -> sendMessage ( 'chat_id' , 'text' );
发送照片
<?php
namespace Telegram ;
require_once __DIR__ . '/vendor/autoload.p