PHP file_get_contents函数读取远程数据超时的解决方法_PHP教程
程序员文章站
2022-04-18 23:17:34
...
PHP file_get_contents函数读取远程数据超时的解决方法
这篇文章主要介绍了PHP file_get_contents函数读取远程数据超时的解决方法,本文直接给出解决方法代码,需要的朋友可以参考下
在网络状况比较差的情况下file_get_contents函数经常读取远程数据失败。
解决办法如下:
代码如下:
/*设置超时配合失败之后尝试多次读取,效果比原先好很多*/
$url = 'http://www.jb51.net';
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>1, //设置超时
)
);
$context = stream_context_create($opts);
$contents = @file_get_contents($url,false,$context);
?>
上一篇: JS实现缓存算法步骤详解
下一篇: php正则修正符用法实例分析
推荐阅读
-
PHP file_get_contents 函数超时的几种解决方法
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
执行、获取远程代码返回:file_get_contents 超时处理的问题详解_PHP教程
-
PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法),burpsuite抓取https_PHP教程
-
php读取json时无数据(为空)的解决方法,phpjson_PHP教程
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
执行、获取远程代码返回:file_get_contents 超时处理的问题详解_PHP教程
-
file_get_contents函数不能使用的解决方法_PHP教程
-
PHP file_get_contents 函数超时的几种解决方法_PHP教程