当前位置:Gxlcms > PHP教程 > PHPfile_get_contents函数读取远程数据超时的解决方法,c函数超时_PHP教程

PHPfile_get_contents函数读取远程数据超时的解决方法,c函数超时_PHP教程

时间:2021-07-01 10:21:17 帮助过:20人阅读

PHP file_get_contents函数读取远程数据超时的解决方法,c函数超时


在网络状况比较差的情况下file_get_contents函数经常读取远程数据失败。
解决办法如下:
代码如下:
/*设置超时配合失败之后尝试多次读取,效果比原先好很多*/
$url = 'http://www.bkjia.com';
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>1, //设置超时
)
);
$context = stream_context_create($opts);
$contents = @file_get_contents($url,false,$context);
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/998805.htmlTechArticlePHP file_get_contents函数读取远程数据超时的解决方法,c函数超时 在网络状况比较差的情况下file_get_contents函数经常读取远程数据失败。 解决...

人气教程排行