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

file_get_content() 超时

时间:2014-11-17 17:19:28      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   div   on   log   

set_time_limit 只能影响php 程序的超时时间。
file_get_contents 读取的是URL的超时时间。
 
因此 set_limit_limit 对file_get_contents 是无效的。
 
<?php

$opt =array(
    ‘http‘=>array(
        ‘method‘=>‘GET‘,
        ‘timeout‘=>60,
        )
    );

$context =stream_context_create($opt);

$html=file_get_contents(‘http://www.baidu.com‘,false,$context);

fpassthru($fp);

 

file_get_content() 超时

标签:style   blog   http   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/yhl664123701/p/4103735.html

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