君山 发表于 2020-11-9 17:05:02

Discuz sizecount函数 字节格式化单位


/**
* 字节格式化单位
* @param $filesize - 大小(字节)
* @return 返回格式化后的文本
*/
function sizecount($size) {
        if($size >= 1073741824) {
                $size = round($size / 1073741824 * 100) / 100 . ' GB';
        } elseif($size >= 1048576) {
                $size = round($size / 1048576 * 100) / 100 . ' MB';
        } elseif($size >= 1024) {
                $size = round($size / 1024 * 100) / 100 . ' KB';
        } else {
                $size = intval($size) . ' Bytes';
        }
        return $size;
}
页: [1]
查看完整版本: Discuz sizecount函数 字节格式化单位