91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在php中獲取遠程圖片的體積大小

發布時間:2021-01-19 16:06:24 來源:億速云 閱讀:140 作者:Leah 欄目:開發技術

怎么在php中獲取遠程圖片的體積大小?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

 代碼如下:


//用法 echo remote_filesize($url,$user='',$pw='');
$url = "https://cache.yisu.com/upload/information/20201209/266/43058.jpg";//這里要換成你的圖片地址
echo remote_filesize($url,$user='',$pw='');

function remote_filesize($uri,$user='',$pw='')
{
// start output buffering
    ob_start();
// initialize curl with given uri
    $ch = curl_init($uri); // make sure we get the header
    curl_setopt($ch, CURLOPT_HEADER, 1); // make it a http HEAD request
    curl_setopt($ch, CURLOPT_NOBODY, 1); // if auth is needed, do it here
    if (!empty($user) && !empty($pw))
    {
        $headers = array('Authorization: Basic ' . base64_encode($user.':'.$pw));
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    }
    $okay = curl_exec($ch);
    curl_close($ch); // get the output buffer
    $head = ob_get_contents(); // clean the output buffer and return to previous // buffer settings
    ob_end_clean();  // gets you the numeric value from the Content-Length // field in the http header
    $regex = '/Content-Length:\s([0-9].+?)\s/';
    $count = preg_match($regex, $head, $matches);  // if there was a Content-Length field, its value // will now be in $matches[1]
    if (isset($matches[1]))
    {
        $size = $matches[1];
    }
    else
    {
        $size = 'unknown';
    }
    $last_mb = round($size/(1024*1024),3);
 $last_kb = round($size/1024,3);
    return $last_kb . 'KB / ' . $last_mb.' MB';
}


看完上述內容,你們掌握怎么在php中獲取遠程圖片的體積大小的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

漠河县| 高安市| 清徐县| 连城县| 宜宾县| 石嘴山市| 泸定县| 即墨市| 扶余县| 西丰县| 南宫市| 卢氏县| 永靖县| 淄博市| 长葛市| 石林| 沁源县| 宁乡县| 肥乡县| 奉贤区| 丹江口市| 施甸县| 永平县| 三亚市| 神池县| 买车| 巨鹿县| 旬阳县| 临湘市| 宜黄县| 上杭县| 苗栗市| 盐津县| 乐清市| 道真| 佛冈县| 大城县| 阜平县| 汉寿县| 丽水市| 富宁县|