电报机器人多次发送相同的消息PHP

时间:2020-02-14 08:38:30

标签: php telegram-bot php-telegram-bot

我正在向php bot写电报,它可以正常工作,但是它多次发送同一条消息,需要发送一次,有人可以帮助我吗?这是我的代码

function chat_telegram( )
{
    $token = <token>;
    $telegram = "https://api.telegram.org/bot" . $token;
    $query = http_build_query([
        'chat_id' => <chat_id>,
        'text' => 'I love pizza'
    ]);

    $response = file_get_contents( $telegram . '/sendMessage?' . $query );
    return $response;
}

0 个答案:

没有答案