file_get_contents防止超时

 解决file_get_contents超时

  1. <?php  
  2. $ctx = stream_context_create(array(  
  3.    'http' => array(  
  4.        'timeout' => 1 //设置一个超时时间,单位为秒  
  5.        )  
  6.    )  
  7. );  
  8. file_get_contents("http://example.com/", 0, $ctx);  
  9. ?>  
    A+
发布日期:2021年07月14日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: