Posted in PHP onMay 13, 2015
在网络状况比较差的情况下file_get_contents函数经常读取远程数据失败。
解决办法如下:
/*设置超时配合失败之后尝试多次读取,效果比原先好很多*/ $url = 'https://3water.com'; $opts = array( 'http'=>array( 'method'=>"GET", 'timeout'=>1, //设置超时 ) ); $context = stream_context_create($opts); $contents = @file_get_contents($url,false,$context); ?>
PHP file_get_contents函数读取远程数据超时的解决方法
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@