我目前正在使用以下方法检查网址是否存在
$url = 'https://www.facebook.com/a-test-example-232397848665383511';
$headers = @get_headers($url);
if(strpos($headers[0],'200')===false){
print('NOT found!');
} else {
print('found!');
}
即使页面在访问时明确解析,也会打印NOT found!
。我打印标题并发现它是因为它返回302
。有没有办法让strpos
测试所有可能解析的标头值?
标题的当前输出:
Array
(
[0] => HTTP/1.1 302 Found
[1] => Location: https://www.facebook.com/unsupportedbrowser
[2] => Vary: Accept-Encoding
[3] => Content-Type: text/html
// more array items
如果我输入一个我知道失败的网址,我会收到以下信息:
Array
(
[0] => HTTP/1.1 404 Not Found
[1] => P3P: CP="Facebook does not have a P3P policy."
[2] => Strict-Transport-Security: max-age=15552000; preload
// rest of array
仅仅为404测试是否安全?
答案 0 :(得分:8)
我会使用cURL
进行网址验证。示例方法如下
public function urlExists($url) {
$handle = curl_init($url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($handle);
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);
if($httpCode >= 200 && $httpCode <= 400) {
return true;
} else {
return false;
}
curl_close($handle);
}
答案 1 :(得分:1)
服务器可以使用RFC 2616中所述的不同状态代码进行响应 对于你的任务,所有代码2xx和3xx意味着成功。
性能说明:get_headers默认使用GET方法,但如果您对页面内容不感兴趣,使用HEAD方法会更好更快。
stream_context_set_default(
array(
'http' => array(
'method' => 'HEAD'
)
)
);
$headers = @get_headers($url);
$status = substr($headers[0], 9, 3);
if ($status >= 200 && $status < 400 ) {
print('found!');
} else {
print('NOT found!');
}