萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php篩選不存在的圖片資源

php篩選不存在的圖片資源

   本文給大家匯總了幾個使用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 <[email protected]>     * @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,有的話文件就不存在。

copyright © 萬盛學電腦網 all rights reserved