防超时的file_get_contents改造函数

2017-09-21  本文已影响0人  chinariver

// 防超时的file_get_contents改造函数

public function _fileGetContents($url)

{

$context=stream_context_create(array(

'http'=>array(

'timeout'=>30

)

));// 超时时间,单位为秒

return file_get_contents($url,0,$context);

}

上一篇 下一篇

猜你喜欢

热点阅读