溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP判斷遠(yuǎn)程圖片或文件或url是否存在-180

發(fā)布時(shí)間:2020-08-01 07:32:12 來源:網(wǎng)絡(luò) 閱讀:5647 作者:DaddysGirl 欄目:web開發(fā)

我通常使用curl判斷判斷遠(yuǎn)程圖片或文件是否存在:

    /**
     * @link http://www.phpddt.com
     */
    function url_exists($url) {
        $ch = curl_init();
        curl_setopt ($ch, CURLOPT_URL, $url);
        //不下載
        curl_setopt($ch, CURLOPT_NOBODY, 1);
        //設(shè)置超時(shí)
        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;
    }


當(dāng)然也有很多其它方法,或多或少有些限制和缺陷,如:
(1)使用fopen()函數(shù),它要在allow_url_open開啟的狀態(tài)下,否則會(huì)報(bào)錯(cuò)。

    $url = 'https://cache.yisu.com/upload/information/20200310/52/108014.jpg';
    if(@fopen($url, 'r')) {
        echo '文件存在';
    } else {
        echo '文件不存在';
    }


(2)get_headers取得服務(wù)器響應(yīng)一個(gè) HTTP 請求所發(fā)送的所有標(biāo)頭,效率較低,你可以測試下。

    $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()函數(shù)

     $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 '文件不存在';
    }

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI