Bytes转到各种MB,GB等等的方法

//单位转换,G和MB转换
        if ($length >= 1073741824) {
            $length = round($length / 1073741824 * 100) / 100 . ' GB';
        } elseif ($length >= 1048576) {
            $length = round($length / 1048576 * 100) / 100 . ' MB';
        } elseif ($length >= 1024) {
            $length = round($length / 1024 * 100) / 100 . ' KB';
        } else {
            $length = $length . ' Bytes';
        }
最后修改:2016 年 07 月 24 日
如果觉得我的文章对你有用,请随意赞赏