如何从URL中检查文件是否存在

时间:2011-10-07 08:32:10

标签: php file curl fsockopen file-exists

我需要检查远程服务器上是否存在特定文件。使用is_file()file_exists()不起作用。任何想法如何快速,轻松地做到这一点?

8 个答案:

答案 0 :(得分:69)

你必须使用CURL

function is_url_exist($url){
    $ch = curl_init($url);    
    curl_setopt($ch, CURLOPT_NOBODY, true);
    curl_exec($ch);
    $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);

    if($code == 200){
       $status = true;
    }else{
      $status = false;
    }
    curl_close($ch);
   return $status;
}

答案 1 :(得分:68)

你不需要CURL ......只是想要检查一个文件是否存在而花费太多......

使用PHP's get_header

$headers=get_headers($url);

然后检查$ result [0]是否包含200 OK(这意味着文件在那里)

检查URL是否有效的功能可以是:

function UR_exists($url){
   $headers=get_headers($url);
   return stripos($headers[0],"200 OK")?true:false;
}

/* You can test a URL like this (sample) */
if(UR_exists("http://www.amazingjokes.com/"))
   echo "This page exists";
else
   echo "This page does not exist";

答案 2 :(得分:15)

我刚刚找到了这个解决方案:

if(@getimagesize($remoteImageURL)){
    //image exists!
}else{
    //image does not exist.
}

来源:http://www.dreamincode.net/forums/topic/11197-checking-if-file-exists-on-remote-server/

答案 3 :(得分:7)

嗨,根据我们在2台不同服务器之间的测试,结果如下:

使用curl检查10个.png文件(每个大约5 mb)平均为5.7秒。 使用标题检查同样的事情平均需要7.8秒!

因此,在我们的测试中,如果你必须检查更大的文件,卷曲会快得多!

我们的卷曲功能是:

function remote_file_exists($url){
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_NOBODY, true);
    curl_exec($ch);
    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    if( $httpCode == 200 ){return true;}
    return false;
}

这是我们的标题检查示例:

function UR_exists($url){
   $headers=get_headers($url);
   return stripos($headers[0],"200 OK")?true:false;
}

答案 4 :(得分:1)

使用curl执行请求,看看它是否返回404状态代码。使用HEAD请求方法执行请求,因此它只返回没有正文的标题。

答案 5 :(得分:1)

您可以使用函数file_get_contents();

if(file_get_contents('https://example.com/example.txt')) {
    //File exists
}

答案 6 :(得分:0)

$file = 'https://picsum.photos/200/300';
$file_headers = @get_headers($file);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
    $exists = false;
}
else {
    $exists = true;
} 

答案 7 :(得分:-1)

    $headers = get_headers((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://" . $_SERVER[HTTP_HOST] . '/uploads/' . $MAIN['id'] . '.pdf');
    $fileExist = (stripos($headers[0], "200 OK") ? true : false);
    if ($fileExist) {
    ?>
    <a class="button" href="/uploads/<?= $MAIN['id'] ?>.pdf" download>скачать</a> 
    <? }
    ?>