file_get_contents防止超时 解决file_get_contents超时 <?php $ctx = stream_context_create(array( 'http' => array( 'timeout' => 1 //设置一个超时时间,单位为秒 ) ) ); file_get_contents("http://example.com/", 0, $ctx); ?> 赞 0 赏 分享