在PHP中,检查某个链接是否存在,有两个方法,一个是使用curl,另外一个是 获得HTTP的header的响应码,如果是200的则是OK,如果是404的话就找不到了,例子如下:
1) 使用get_headers:
PHP;">
$url = "http://www.abc.com/demo.jpg";
$headers = @get_headers($url);
if($headers[0] == 'HTTP/1.1 404 Not Found')
{
echo "URL not Exists";
}
else
{
echo "URL Exists";
}
?>
$headers = @get_headers($url);
if($headers[0] == 'HTTP/1.1 404 Not Found')
{
echo "URL not Exists";
}
else
{
echo "URL Exists";
}
?>
get_headers中有第2个参数,是true的话,结果将会是个关联数组
2) 使用CURL
PHP;">
}
else
{
echo "URL not Exists";
}
?>
else
{
echo "URL not Exists";
}
?>
CURLOPT_NOBODY指定了只是建立连接,而不取整个报文的内容
原文链接:https://www.f2er.com/php/19844.html