码迷,mamicode.com
首页 > 其他好文 > 详细

重构file_get_contents实现一个带超时链接访问的函数

时间:2019-02-01 14:51:31      阅读:193      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!