如何检查网址是否存在 - 错误404? (使用php)
<?php
$url = "http://www.faressoft.org/";
?>
答案 0 :(得分:7)
如果你有allow_url_fopen
,你可以这样做:
$exists = ($fp = fopen("http://www.faressoft.org/", "r")) !== FALSE;
if ($fp) fclose($fp);
虽然严格来说,这不会仅对404错误返回false。可以使用流上下文来获取该信息,但更好的选择是使用curl扩展:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/notfound");
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);
$is404 = curl_getinfo($ch, CURLINFO_HTTP_CODE) == 404;
curl_close($ch);
答案 1 :(得分:3)
最简单的检查404/200等等。
<?php
$mylink="http://site.com";
$handler = curl_init($mylink);
curl_setopt($handler, CURLOPT_RETURNTRANSFER, TRUE);
$re = curl_exec($handler);
$httpcdd = curl_getinfo($handler, CURLINFO_HTTP_CODE);
if ($httpcdd == '404')
{ echo 'it is 404';}
else {echo 'it is not 404';}
?>
答案 2 :(得分:0)
你可以使用curl这是一个PHP库。使用curl,您可以查询页面,然后检查名为的错误代码:
CURLE_HTTP_RETURNED_ERROR (22)
如果CURLOPT_FAILONERROR设置为TRUE并且HTTP服务器返回错误代码&gt; = 400,则会返回此信息。
来自php.net的CURL文档:
<?php
// Create a curl handle to a non-existing location
$ch = curl_init('http://404.php.net/');
// Execute
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
// Check if any error occured
if(curl_errno($ch))
{
echo 'Curl error: ' . curl_error($ch);
}
// Close handle
curl_close($ch);
?>