PHP获取文件大小的方法


PHP #文件2014-04-13 00:25

下面一个网在线教程给大家说两种获取的方法。

方法1

function convert($size) { 
    $unit=array('b','kb','mb','gb','tb','pb'); 
    return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i]; 
}

方法2

function HumanReadableFilesize($size) {
    $mod = 1024;
    $units = explode(' ', 'B KB MB GB TB PB');
    for ($i = 0; $size > $mod; $i++) {
        $size /= $mod; // http://yige.org/php/
    }
    return round($size, 2).' '.$units[$i];
}

相关文章

粤ICP备11097351号-1