我正在构建一个电报机器人来向我的频道发送广告,我希望它们在一段时间后被删除
但是当我运行这样的代码时,我需要获取消息 ID 才能删除它
$update = json_decode(file_get_contents("php://input"));
$command = $update->message->text;
function message($mchat_id, $mtext)
{
global $token;
$ret=json_decode(file_get_contents('https://api.telegram.org/bot' .$token.'/sendMessage?chat_id='.$mchat_id.'&text='.$mtext.'&parse_mode=HTML'));
return $ret;
}
function delete($dchat_id, $dmsgid)
{
global $token;
file_get_contents('https://api.telegram.org/bot'.$token.'/deleteMessage?chat_id='.$dchat_id.'&message_id='.$dmsgid);
}
if($command == "/start")
{
$ret = message("$chat_id" , "$text");
$msgid = $ret->result->message_id;
$chatid = $ret->result->chat->id;
sleep(3600);
delete($chaid , $msgid);
}
它永远每~2分钟一次又一次地发送文本,并在一小时后删除每条发送的消息。
你使用了名为 delete(( 的现有函数,只需重命名它。