// 防超时的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改造函数
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
网友评论