php判斷遠端資源是否存在的範例程式碼分析

黄舟
發布: 2023-03-06 21:04:01
原創
1798 人瀏覽過

php判斷遠端資源是否存在的範例程式碼分析

<?php
$url1=&#39;http://www.91hi.net/web/demo/1.jpg&#39; //exists
$url2=&#39;http://91hi.net/web/demo/www/jd/image/logo.png&#39;; //not exists 
 
 
 
$get1=get_headers($url1);
$get2=get_headers($url2);
 
print_r($get1);
print_r($get2);
登入後複製

回傳結果:

Array
(
    [0] => HTTP/1.1 404 Not Found
    [1] => Date: Tue, 14 Mar 2017 10:58:00 GMT
    [2] => Server: Apache
    [3] => Vary: User-Agent,Accept-Encoding
    [4] => Connection: close
    [5] => Content-Type: text/html
)
Array
(
    [0] => HTTP/1.1 200 OK
    [1] => Date: Tue, 14 Mar 2017 10:58:00 GMT
    [2] => Server: Apache
    [3] => Last-Modified: Wed, 09 Nov 2016 08:57:06 GMT
    [4] => ETag: "2162a05-13f5-540da70f97c80"
    [5] => Accept-Ranges: bytes
    [6] => Content-Length: 5109
    [7] => Vary: User-Agent
    [8] => Connection: close
    [9] => Content-Type: image/png
)
 
可以看到返回的http状态信息组成的一维数组.且第一个数组单元为响应状态信息.
登入後複製

於是乎,透過取得到的狀態碼,用來判斷遠端資源是否存在。

$statusCode=substr($get1[0], 9, 3);
if($statusCode == 200 || $statusCode == 304){
    echo "It&#39;s exists."
}else{
    echo "It&#39;s not exists."
}
登入後複製

以上是php判斷遠端資源是否存在的範例程式碼分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!