234213 发表于 2016-3-4 08:43:08

PHP file_get_contents 设置超时时间

   $opts = array('http' =>
                        array(
                                        'method'=> 'GET',
                                        'timeout' => 3
                        )
        );
        $context= stream_context_create($opts);
       
        $url = "www.google.com";
        $text = @file_get_contents($url,false,$context,-1,100);
        if($text==FALSE){
       return FALSE;
        }
        return TRUE;

页: [1]
查看完整版本: PHP file_get_contents 设置超时时间