教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php获取远程图片大小的实例代码

php获取远程图片大小的实例代码

发布时间:2017-04-16   编辑:jiaochengji.com
分享一例php代码,获取远程图片文件的大小,先CURL获取图片到缓冲区,然后正则获取图片的Content-Length信息。感兴趣的朋友可以参考下。

本节内容:
php获取远程图片大小

例子:
 

复制代码 代码示例:

<?php
/**
* 取得远程图片文件的大小
* by www.jbxue.com
*/

//用法 echo remote_filesize($url,$user='',$pw='');
$url = "http://www.jbxue.com/images/logo.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获取远程图片大小的实例代码
php函数get_headers是HEAD请求或GET请求
php 获取远程网页内容简单函数
php gd库实现远程图片的下载
php抓取远程图片到本地保存的方法
PHP采集远程图片的实例代码
PHP如何判断远程图片是否存在
php使用请求头信息获取远程图片大小
php获取远程文件大小的函数

[关闭]
~ ~