这是我的代码:

<?php
$url = "http://www.uhasselt.be/collegeroosters/2009_2010_298_5_10.html";
$headers = get_headers($url, 1);
print_r($headers);
$contloc = $headers["Content-Location"];
echo "Content-Location: " . $contloc . "\n";
$soft404test = strpos($contloc, "http://www.uhasselt.be/404b.htm") ? true : false;
var_dump($soft404test);
?>

这是其输出:

Array
(
    [0] => HTTP/1.1 200 OK
    [Content-Length] => 2030
    [Content-Type] => text/html
    [Content-Location] => http://www.uhasselt.be/404b.htm?404;http://www.uhasselt.be:80/collegeroosters/2009_2010_298_5_10.html
    [Last-Modified] => Mon, 22 Aug 2005 07:10:22 GMT
    [Accept-Ranges] => bytes
    [ETag] => "88a8b68fe8a6c51:31c9e"
    [Server] => Microsoft-IIS/6.0
    [MicrosoftOfficeWebServer] => 5.0_Pub
    [X-Powered-By] => ASP.NET
    [Date] => Tue, 24 Nov 2009 08:40:25 GMT
    [Connection] => close
)
Content-Location: http://www.uhasselt.be/404b.htm?404;http://www.uhasselt.be:80/collegeroosters/2009_2010_298_5_10.html
bool(false)

这种行为是出乎意料的。我认为我正在做的是通过查看HTTP标头中的内容位置属性来检测软404。 strpos功能做出了我不明确的决定。我哪里做错了? (顺便说一句,我不需要在其他网站上工作。)

有帮助吗?

解决方案

strpos() 如果没有找到字符串,则可以返回false,如果从一开始就找到了字符串,则可以返回false。但是,0在布尔检查中评估为false,因此您需要明确检查类型:

$soft404test = strpos($contloc, "http://www.uhasselt.be/404b.htm") !== false;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top