PHP file_get_contents 函数超时的几种解决方法

Rasine ·
更新时间:2024-11-14
· 911 次阅读

这里就简单介绍两种:
一、增加超时的时间限制
这里需要注意:set_time_limit只是设置你的PHP程序的超时时间,而不是file_get_contents函数读取URL的超时时间。
我一开始以为set_time_limit也能影响到file_get_contents,后来经测试,是无效的。真正的修改file_get_contents延时可以用resource $context的timeout参数:
代码如下:
$opts = array(
‘http'=>array(
‘method'=>”GET”,
‘timeout'=>60,
)
);
$context = stream_context_create($opts);
$html =file_get_contents('http://www.example.com', false, $context);
fpassthru($fp);

二、一次有延时的话那就多试几次
有时候失败是因为网络等因素造成,没有解决办法,但是可以修改程序,失败时重试几次,仍然失败就放弃,因为file_get_contents()如果失败将返回 FALSE,所以可以下面这样编写代码:
代码如下:
$cnt=0;
while($cnt < 3 && ($str=@file_get_contents('http…'))===FALSE) $cnt++;
您可能感兴趣的文章:PHP CURL或file_get_contents获取网页标题的代码及两者效率的稳定性问题php中file_get_contents与curl性能比较分析php采用file_get_contents代替使用curl实例php中使用Curl、socket、file_get_contents三种方法POST提交数据PHP中file_get_contents高級用法实例PHP file_get_contents设置超时处理方法PHP下通过file_get_contents的代理使用方法PHP中使用cURL实现Get和Post请求的方法PHP CURL CURLOPT参数说明(curl_setopt)php基于curl重写file_get_contents函数实例



get file 方法 函数 file_get_contents PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章
Vesta 2020-06-09
702