欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP file_get_contents 设置超时时间

程序员文章站 2022-03-25 12:20:32
...
$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;