php篩選不存在的圖片資源

來源:互聯網
上載者:User

   本文給大家匯總了幾個使用php實現篩選不存在圖片資源的方法,非常的簡單實用,有需要的小夥伴可以參考下。

  方法一:

  最簡單的方法就是用fopen(),看看檔案能否開啟,能打就檔案當然就存在。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 <?php $url = 'http://www.jb51.net/images/test.jpg';    if( @fopen( $url, 'r' ) )  {   echo 'File Exits'; }  else  {  echo 'File Do Not Exits'; } ?>

  方法二:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 /**     * 篩選不存在的圖片資源     *     * @author wanggeng <wanggeng123@vip.qq.com>     * @return vodi     */          private static function _checkAll($url)    {       $curl = curl_init($url);      curl_setopt($curl, CURLOPT_NOBODY, true);      $result = false;      $res = curl_exec($curl);      if ($res !== false){        $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);        if($statusCode == 200) {          $result = true;        }      }      curl_close($curl);      return $result;    }

  首先建立一個curl連結到執行的url也就是圖片或者檔案的連結

  初始一個變數為false

  或者開啟連結的head頭資訊 每一個http請求都會有一個http Code

  我們就根據這個code去驗證

  如果返回code 是200 證明資源存在 給之前的變數一個true的值 否則不予賦值

  方法三:

  CURL 方法

  CURL是個很好用的類庫,下面看下如何用它來判斷。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php $url2 = 'http://www.jb51.net/test.jpg';    $ch = curl_init(); $timeout = 10; curl_setopt ($ch, CURLOPT_URL, $url2); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);    $contents = curl_exec($ch); //echo $contents; if (preg_match("/404/", $contents)){  echo '檔案不存在'; } ?>

  curl_exec()執行完之後如果檔案不存在,會返回如下資訊:

  ?

1 2 3 4 5 6 HTTP/1.1 404 Not Found Date: Tue, 14 Feb 2012 05:08:34 GMT Server: Apache Accept-Ranges: bytes Content-Length: 354 Content-Type: text/html

  用正則看看是否有404,有的話檔案就不存在。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.