file_get_contents远程请求url时,出现警告: php_network_getaddresses: getaddrinfo failed: Name or servicenot known

用file_get_contents请求数据时有时成功有时报错,网上改服务器配置什么的看的不是很懂,直接改用curl请求了

curl代码:

$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$result=curl_exec($ch);
curl_close($ch);

猜你喜欢

转载自www.cnblogs.com/weilovehua/p/9816991.html