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

function wp_file_get_contents($url, $timeout = 30)
{
    $context = stream_context_create(array(
        'http' => array(
            'timeout' => $timeout // 超时时间,单位为秒
        )
    )); 

    return file_get_contents($url, false, $context);
}

posted on 2019-02-01 14:30  果然朝辉  阅读(202)  评论(0编辑  收藏  举报

导航