-4

下午!我正在尝试检查从 post 变量接收到的 URL 是否存在,以及它是否确实将用户发送到那里。如果不重定向到其他地方......我写了这个但由于某种原因不起作用,

有任何想法吗?干杯

<?php>
$file = $_POST["code"];
$file_headers =                   
@get_headers('http://example.co.uk/' $file);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
/* does not exist
header('Location: http://example.co.uk/?exists=false');
echo $file 'not found';
}
else {
/* exists
header('Location: http://example.co.uk/' $file);
echo $file 'found';
};
?>
4

2 回答 2

4

您使用错误的评论。它是//不是 /*在做单行评论时。

正如您从降价显示中看到的那样,您的代码的整个结尾当前已被注释掉,您的脚本将出现错误。

于 2013-01-04T18:43:05.540 回答
0

尝试这样做:

$file = 'http://www.domain.com/somefile.jpg';
$file_headers = @get_headers($file);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
    $exists = false;
}
else {
    $exists = true;
}
于 2013-08-12T08:05:00.217 回答