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;
上一篇: PHP实现约瑟夫环问题的方法详解
下一篇: Node.js的优点和缺点的简单分析
推荐阅读
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
PHP file_get_contents设置超时处理方法
-
php-fpm超时时间设置request_terminate_timeout资源问题分析
-
php中session过期时间设置及session回收机制介绍
-
php之curl设置超时实例
-
php中实现精确设置session过期时间的方法
-
php set_time_limit(0) 设置程序执行时间的函数
-
深入php函数file_get_contents超时处理的方法详解
-
详解PHP内置访问资源的超时时间 time_out file_get_contents read_file
-
ASP.NET页面请求超时时间设置多种方法