dbunt1tled/yii2-telegram-notify

发送通知触发所有联系人

0.04b 2018-01-14 11:56 UTC

This package is auto-updated.

Last update: 2024-09-26 02:26:07 UTC


README

发送通知触发所有联系人

安装

安装此扩展的首选方式是通过 composer

运行以下命令之一

php composer.phar require --prefer-dist dbunt1tled/yii2-telegram-notify "*"

或添加

"dbunt1tled/yii2-telegram-notify": "*"

到您的 composer.json 文件的 require 部分中。

使用方法

扩展安装后,只需在代码中通过以下方式使用它

<?php
    $client = new yii\httpclient\Client();
    $botTelegram = new TelegramNotify($tokenYourBot,$client);
    $botTelegram->sendMessage('Всем привет'); 
?>