您好,登錄后才能下訂單哦!
我通常使用curl判斷判斷遠程圖片或文件是否存在:
/**
* @link http://www.phpddt.com
*/
function url_exists($url) {
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
//不下載
curl_setopt($ch, CURLOPT_NOBODY, 1);
//設置超時
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if($http_code == 200) {
return true;
}
return false;
}
當然也有很多其它方法,或多或少有些限制和缺陷,如:
(1)使用fopen()函數,它要在allow_url_open開啟的狀態下,否則會報錯。
$url = 'https://cache.yisu.com/upload/information/20200310/52/108014.jpg';
if(@fopen($url, 'r')) {
echo '文件存在';
} else {
echo '文件不存在';
}
(2)get_headers取得服務器響應一個 HTTP 請求所發送的所有標頭,效率較低,你可以測試下。
$url = 'https://cache.yisu.com/upload/information/20200310/52/108014.jpg';
stream_context_set_default(
array(
'http' => array(
'timeout' => 1,
)
)
);
$headers = get_headers($url);
if(preg_match('/200/',$headers[0])) {
echo '文件存在';
} else {
echo '文件不存在';
}
(3)file_get_contents()函數
$opts = array(
'http'=>array(
'timeout'=>3,
)
);
$context = stream_context_create($opts);
$resource = @file_get_contents('https://cache.yisu.com/upload/information/20200310/52/108014.jpg', false, $context);
if($resource) {
echo '文件存在';
} else {
echo '文件不存在';
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。