PHP-电报Bot按时间安排发送消息

时间:2018-09-26 12:45:41

标签: php telegram telegram-bot

我用PHP开发了Telegram机器人,并设法完成了诸如发送消息,创建键盘和嵌入式键盘等基本任务。现在,我正在尝试在特定时间向特定用户发送消息。例如,我尝试这样做:

if (date("H:i:s", time()) == date("H:i:s", strtotime("14:00:00")))    
{
   sendMessage($user, "Hey, this is a scheduled message");
}

但是它没有用,就好像我以前没有收到用户的消息时也无法发送消息。我正在使用Webhook来获取更新,并在代码中按如下方式检索它们:

$update = json_decode(file_get_contents("php://input"), true);

有人可以解释我在需要时不仅要在收到消息时要发送消息吗?

0 个答案:

没有答案