我正在编写代码以从其他网址获取内容。 我的代码在localhost上运行正常,但是当我上传到服务器上时它无法正常工作。
显示卷曲错误:
卷曲错误7,无法连接到www。******。com端口80:连接 超时了。
这是我的代码
function get_data($url) {
//echo $url;
$ch = curl_init();
curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$data = curl_exec($ch);
if(!$data ) {
echo "curl error->".curl_errno($ch)."->".curl_error($ch);
}
curl_close($ch);
return $data;
}