PHP使用適合閱讀的格式顯示文件大小方法

字號(hào):


    本文實(shí)例講述了PHP使用適合閱讀的格式顯示文件大小的方法。分享給大家供大家參考。具體分析如下:
    文件大小顯示,例如 1.7K , 2.9M
    代碼如下:
    // A much better and accurate version can be found
    // in Aidan's PHP Repository:
    // http://aidanlister.com/repos/v/function.size_readable.php
    /**
    * Returns a human readable filesize
    *
    * @author wesman20 (php.net)
    * @author Jonas John
    * @version 0.3
    * @link http://www.jonasjohn.de/snippets/php/readable-filesize.htm
    */
    function HumanReadableFilesize($size) {
    // Adapted from: http://www.php.net/manual/en/function.filesize.php
    $mod = 1024;
    $units = explode(' ','B KB MB GB TB PB');
    for ($i = 0; $size > $mod; $i++) {
    $size /= $mod;
    }
    return round($size, 2) . ' ' . $units[$i];
    }