KB转换成MB和GB

/**
 * @title KB转换成MB和GB
 * @description KB转换成MB和GB
 * @author 卡卡
 */
function switchSize($filesize)
{
    if ($filesize >= 1048576) {
        $filesize = round($filesize / 1048576 * 100) / 100 . 'GB';
    } elseif ($filesize >= 1024) {
        $filesize = round($filesize / 1024 * 100) / 100 . 'MB';
    } else {
        $filesize = $filesize . 'KB';
    }
    return $filesize;
}

 

posted @ 2021-04-16 19:23  爱家家的卡卡  阅读(521)  评论(0编辑  收藏  举报