教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php获取远程图片大小函数示例

php获取远程图片大小函数示例

发布时间:2017-11-28   编辑:jiaochengji.com
分享一例php获取远程图片大小的函数,掌握下php获取远程文件与文件大小的方法,有需要的朋友做个参考。

如何用php远程图片的体积大小,本节分享一段代码,大家看看。

例子:
 

复制代码 代码示例:
//用法 echo remote_filesize($url,$user='',$pw='');
$url = "http://www.aa.com/librarys/images/random/rand_11.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';
}

实现思路:
先CURL获取图片到缓冲区,然后正则获取图片的Content-Length信息,即实现了获取远程图片大小的功能。

您可能感兴趣的文章:
php获取远程图片大小函数示例
php函数get_headers是HEAD请求或GET请求
php使用请求头信息获取远程图片大小
php获取远程图片大小的实例代码
php获取远程文件大小的函数
php 获取远程网页内容简单函数
php gd库实现远程图片的下载
PHP采集远程图片的实例代码
php抓取远程图片到本地保存的方法
php获取远程图片保存到本地

[关闭]
~ ~