在网络状况比较差的情况下file_get_contents函数经常读取远程数据失败。 解决办法如下:
代码如下:
array(
'method'=>"GET",
'timeout'=>1,//设置超时
)
);
$context = stream_context_create($opts);
$contents = @file_get_contents($url,false,$context);
?>
原文链接:https://www.f2er.com/php/21928.html