gpt4 book ai didi

php - curl 返回错误 111 套接字

转载 作者:行者123 更新时间:2023-12-02 17:47:10 26 4
gpt4 key购买 nike

我在下面得到了这个简单的 curl 代码:

$target = "/plugin/api_register.php?name=$activation_name&key=$activation_key&url=$siteurl";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://domain.com'.$target);
curl_setopt($ch, CURLOPT_REFERER, $siteurl);
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
$output = curl_exec($ch);
if (empty($output))
{
// some kind of an error happened
die(curl_error($ch));
}
curl_close($ch);
print_r($output);

我得到的只是套接字错误:111我不知道为什么它不会连接。请帮忙

最佳答案

Errno 111 表示连接被拒绝。

可能有几个原因

  • 没有运行 HTTP 服务器
  • TCP 队列已满
  • 防火墙阻止您的请求

关于php - curl 返回错误 111 套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13418249/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com