当前位置:Gxlcms > PHP教程 > PHP友好显示文件大小适合阅读

PHP友好显示文件大小适合阅读

时间:2021-07-01 10:21:17 帮助过:23人阅读

PHP格式化文件大小,使bit值大小文件转换为KB、MB、GB、TB、PB单位的数值

/**
 * Returns a human readable filesize
 *
 * @author      wesman20 (php.com)
 * @author      Jonas John
 * @version     0.3
 */
function HumanReadableFilesize($size) {
 
    // Adapted from: http://www.php.com/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];
}

人气教程排行