这篇文章主要为大家详细介绍了php函数file_get_contents超时处理的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
一.增加超时的时间限制代码如下:
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>60,
) );
$context = stream_context_create($opts); $html =file_get_contents('http://www.example.com', false, $context);
代码如下:
function Post($url, $post = null)
{
$context = array();
if (is_array($post)) {
ksort($post);
$context['http'] = array (
'timeout'=>60,
'method' => 'POST',
'content' => http_build_query($post, '', '&'),
);
}
return file_get_contents($url, false, stream_context_create($context));
}
$data = array (
'name' => 'test',
'email' => 'test@gmail.com',
'submit' => 'submit',
);
echo Post('http://www.example.com', $data);
本文来自:http://www.q1010.com/173/15642-0.html
注:关于php函数file_get_contents超时处理的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:file_get_contents,超时
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。