PHP file_get_contents函数读取远程数据超时的解决方法,c函数超时
程序员文章站
2024-01-19 11:02:28
...
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);
?>
上一篇: 无限分类&树型论坛的实现
下一篇: php 中文汉字验证码生成程序(1/3)
推荐阅读
-
PHP file_get_contents函数读取远程数据超时的解决方法,c函数超时
-
PHP file_get_contents 函数超时的几种解决办法
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
PHP file_get_contents 函数超时的几种解决方法
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
深入php函数file_get_contents超时处理的方法详解
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
深入php函数file_get_contents超时处理的方法详解
-
PHP file_get_contents 函数超时的几种解决办法
-
PHP file_get_contents函数读取远程数据超时的解决方法