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;
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。