标签:out creat code http return timeout pre text context
function wp_file_get_contents($url, $timeout = 30)
{
$context = stream_context_create(array(
‘http‘ => array(
‘timeout‘ => $timeout // 超时时间,单位为秒
)
));
return file_get_contents($url, false, $context);
}
重构file_get_contents实现一个带超时链接访问的函数
标签:out creat code http return timeout pre text context
原文地址:https://www.cnblogs.com/phonecom/p/10345733.html