我在使用file_get_contents进行获取内容的时候设置了超时时间3秒,但是在获取过程中,发现,有些请求远远超过这个值,代码如下:
$opts = array(
'http' => array(
'method' => "GET",
'timeout' => 3,
)
);
$context = stream_context_create($opts);
$t1 = time();
@$file_data = file_get_contents($url, FALSE, $context);
echo '|耗时:' . (time() - $t1) . '秒|';
1
feiyuanqiu 2015-07-06 14:34:58 +08:00
我记得好像是发送三秒接收三秒总共有6秒超时的样子...好久以前遇到的问题了,最后还是改成了curl来处理
|
2
b821025551b 2015-07-06 18:28:43 +08:00
改成curl吧,file_get_content在某些url无法访问的情况下设置超时也没什么用。
|
3
chuxuezhe OP 谢谢,curl是可以生效的
|