我有几个 Telegram 机器人多年来运行良好;我使用 2 种方式向 Bot API 发送请求:
第一个是:
file_get_contents($url);
第二个是:
$ch = curl_init($url);
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_TIMEOUT => 60
]);
curl_exec($ch);
几天前,我注意到:
file_get_contents()
failed to open stream: Connection timed out
每次都停止工作完全返回,但它适用于对其他网站的请求;- cURL 继续工作,但速度很慢:向机器人发送消息后,我等待 5-8 秒才能收到答复;当我改为
CURLOPT_CONNECTTIMEOUT
等待1
时间减少到1秒左右。
file_get_contents()
已经开始像以前一样工作了context
:
file_get_contents($url, false, stream_context_create([
'socket' => [
'bindto' => '0:0'
]
]));
last_error_message
总是Read timeout expired
。_ 服务器重新启动没有帮助。从浏览器直接向 Bot API 发出请求非常有效。
发生了什么以及如何解决?