首頁  >  問答  >  主體

如何透過 PHP 檢查 URL 是否存在?

<p>如何檢查 PHP 中的 URL 是否存在(不是 404)? </p>
P粉288069045P粉288069045445 天前444

全部回覆(2)我來回復

  • P粉333186285

    P粉3331862852023-08-24 16:27:55

    在決定 php 中的 url 是否存在時,需要注意以下幾點:

    • 網址本身是否有效(字串,非空,良好的語法),這可以快速檢查伺服器端。
    • 等待回應可能需要一些時間並會阻止程式碼執行。
    • 並非所有 get_headers() 傳回的標頭都是格式正確的。
    • 使用curl(如果可以的話)。
    • 防止取得整個正文/內容,而僅請求標頭。
    • 考慮重定向網址:
    • 您想要回傳第一個程式碼嗎?
    • 或遵循所有重定向並返回最後的程式碼?
    • 您最終可能會得到 200,但它可以使用元標記或 JavaScript 進行重定向。要弄清楚之後會發生什麼事是很困難的。

    請記住,無論您使用什麼方法,等待回應都需要時間。
    所有程式碼可能(並且可能會)停止,直到您知道結果或請求逾時。

    例如:如果網址無效或無法訪問,下面的程式碼可能需要很長時間才能顯示頁面:

    <?php
    $urls = getUrls(); // some function getting say 10 or more external links
    
    foreach($urls as $k=>$url){
      // this could potentially take 0-30 seconds each
      // (more or less depending on connection, target site, timeout settings...)
      if( ! isValidUrl($url) ){
        unset($urls[$k]);
      }
    }
    
    echo "yay all done! now show my site";
    foreach($urls as $url){
      echo "<a href=\"{$url}\">{$url}</a><br/>";
    }

    下面的函數可能會有所幫助,您可能需要修改它們以滿足您的需求:

    function isValidUrl($url){
            // first do some quick sanity checks:
            if(!$url || !is_string($url)){
                return false;
            }
            // quick check url is roughly a valid http request: ( http://blah/... ) 
            if( ! preg_match('/^http(s)?:\/\/[a-z0-9-]+(\.[a-z0-9-]+)*(:[0-9]+)?(\/.*)?$/i', $url) ){
                return false;
            }
            // the next bit could be slow:
            if(getHttpResponseCode_using_curl($url) != 200){
    //      if(getHttpResponseCode_using_getheaders($url) != 200){  // use this one if you cant use curl
                return false;
            }
            // all good!
            return true;
        }
        
        function getHttpResponseCode_using_curl($url, $followredirects = true){
            // returns int responsecode, or false (if url does not exist or connection timeout occurs)
            // NOTE: could potentially take up to 0-30 seconds , blocking further code execution (more or less depending on connection, target site, and local timeout settings))
            // if $followredirects == false: return the FIRST known httpcode (ignore redirects)
            // if $followredirects == true : return the LAST  known httpcode (when redirected)
            if(! $url || ! is_string($url)){
                return false;
            }
            $ch = @curl_init($url);
            if($ch === false){
                return false;
            }
            @curl_setopt($ch, CURLOPT_HEADER         ,true);    // we want headers
            @curl_setopt($ch, CURLOPT_NOBODY         ,true);    // dont need body
            @curl_setopt($ch, CURLOPT_RETURNTRANSFER ,true);    // catch output (do NOT print!)
            if($followredirects){
                @curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,true);
                @curl_setopt($ch, CURLOPT_MAXREDIRS      ,10);  // fairly random number, but could prevent unwanted endless redirects with followlocation=true
            }else{
                @curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,false);
            }
    //      @curl_setopt($ch, CURLOPT_CONNECTTIMEOUT ,5);   // fairly random number (seconds)... but could prevent waiting forever to get a result
    //      @curl_setopt($ch, CURLOPT_TIMEOUT        ,6);   // fairly random number (seconds)... but could prevent waiting forever to get a result
    //      @curl_setopt($ch, CURLOPT_USERAGENT      ,"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1");   // pretend we're a regular browser
            @curl_exec($ch);
            if(@curl_errno($ch)){   // should be 0
                @curl_close($ch);
                return false;
            }
            $code = @curl_getinfo($ch, CURLINFO_HTTP_CODE); // note: php.net documentation shows this returns a string, but really it returns an int
            @curl_close($ch);
            return $code;
        }
        
        function getHttpResponseCode_using_getheaders($url, $followredirects = true){
            // returns string responsecode, or false if no responsecode found in headers (or url does not exist)
            // NOTE: could potentially take up to 0-30 seconds , blocking further code execution (more or less depending on connection, target site, and local timeout settings))
            // if $followredirects == false: return the FIRST known httpcode (ignore redirects)
            // if $followredirects == true : return the LAST  known httpcode (when redirected)
            if(! $url || ! is_string($url)){
                return false;
            }
            $headers = @get_headers($url);
            if($headers && is_array($headers)){
                if($followredirects){
                    // we want the last errorcode, reverse array so we start at the end:
                    $headers = array_reverse($headers);
                }
                foreach($headers as $hline){
                    // search for things like "HTTP/1.1 200 OK" , "HTTP/1.0 200 OK" , "HTTP/1.1 301 PERMANENTLY MOVED" , "HTTP/1.1 400 Not Found" , etc.
                    // note that the exact syntax/version/output differs, so there is some string magic involved here
                    if(preg_match('/^HTTP\/\S+\s+([1-9][0-9][0-9])\s+.*/', $hline, $matches) ){// "HTTP/*** ### ***"
                        $code = $matches[1];
                        return $code;
                    }
                }
                // no HTTP/xxx found in headers:
                return false;
            }
            // no headers :
            return false;
        }

    回覆
    0
  • P粉465287592

    P粉4652875922023-08-24 00:30:23

    這裡:

    $file = 'http://www.example.com/somefile.jpg';
    $file_headers = @get_headers($file);
    if(!$file_headers || $file_headers[0] == 'HTTP/1.1 404 Not Found') {
        $exists = false;
    }
    else {
        $exists = true;
    }

    來自這裡在上面的帖子下面,有一個 curl 解決方案:

    function url_exists($url) {
        return curl_init($url) !== false;
    }

    回覆
    0
  • 取消回覆