美文网首页
防超时的file_get_contents改造函数

防超时的file_get_contents改造函数

作者: chinariver | 来源:发表于2017-09-21 10:17 被阅读0次

// 防超时的file_get_contents改造函数

public function _fileGetContents($url)

{

$context=stream_context_create(array(

'http'=>array(

'timeout'=>30

)

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

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

}

相关文章

网友评论

      本文标题:防超时的file_get_contents改造函数

      本文链接:https://www.haomeiwen.com/subject/ibkzsxtx.html