AP
Size: a a a
AP
Y
AP
use Telegram\Bot\Api;
public function sendMsg($botToken,$chat_id,$text)
{
$telegram = new Api($botToken);
$response = $telegram->sendMessage([
'chat_id' => $chat_id,
'text' => $text,
]);
return $response;
}
V
AP
V
V
AP
V
AP
AP
AP
V
V
V