appzz/telegram-message

通过bot和curlclient库发送Telegram消息

1.0.1 2024-03-12 09:12 UTC

This package is auto-updated.

Last update: 2024-09-12 10:08:33 UTC


README

通过bot向tg群组发送消息

准备中

使用方法

<?php
	$tg = TelegramMessage::factory ();
	$tg->token('00000000000000000000000000000000000000000000000');
	$tg->chat_id('-0000000000000000000');
	//$tg->markdown();
	$tg->text("Ut semper!!!");
	//$tg->silent(true);
	$result = $tg->send();
?>