我使用PHP cURL通过GET请求从api(192.168.168.85:8080)获取响应。 当我在localhost中运行代码时。一切都运行完美(获得响应),但相同的代码不能从实时服务器。
这是我的代码
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_FOLLOWLOCATION=>1,
CURLOPT_URL => $sendHere//$sendhere is (192.168.168.85:8080?along with some query strings)
));
$resp = curl_exec($curl);
$test=curl_error($curl);
echo json_encode([$test,$resp]);
每次响应错误以及错误7.连接失败
我做了很多研究并经历了所有被问到的问题,发现这可能是因为80以外的代理或端口,但仍然无法弄清楚如何解决问题。
请帮忙