如何使用PHP检查url是否存在,并使其在几秒钟后超时



到目前为止,我使用了两种不同的方法来检查url:

$h = @get_headers($url);
$status = array();
preg_match('/HTTP/.* ([0-9]+) .*/', $h[0] , $status);
return ($status[1] == 200);

$file_headers = @get_headers($url);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
$exists = false;
}
else {
    $exists = true;
}
return $exists;

我只是不确定如何在指定的秒数后使这些请求超时。当url不存在时,我的脚本挂起了几分钟,然后它最终以脱机状态返回。什么好主意吗?

解决方案:

使用Curl设置超时时间,代码如下:

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($curl);
curl_close($curl);
preg_match("/HTTP/1.[1|0]s(d{3})/",$data,$matches);
return ($matches[1] == 200);

您必须在启用URL处理程序的情况下滚动您自己的fsockopen(),这允许您指定超时。但是这样一来,您就不得不从头开始构建自己的HTTP请求,因此更好的解决方案是使用curl。您可以轻松地在其中构造一个头部请求,并使用CURLOPT_CONNECTIMEOUT(用于连接)和CURLOPT_TIMEOUT(一般总体超时)指定超时。

您可以使用流上下文。见:http://us2.php.net/manual/en/context.http.php。

您可以创建一个具有短超时和HEAD方法的上下文,并使用file_get_contents()来获取它。

一个简单的例子:

$context = stream_context_create(array('http' => array(
    'method' => 'HEAD',
    'timeout' => 10
)));
$response = file_get_contents($url, false, $context);
$exists = ($response !== false);

这需要启用HTTP包装器;参见:http://php.net/manual/en/wrappers.http.php。如果您想获得响应的标题,您必须访问特殊的全局$http_response_header

尝试stream_set_timeout函数:

相关内容

  • 没有找到相关文章

最新更新