码迷,mamicode.com
首页 > Web开发 > 详细

php自定义函数: 文件大小转换成智能形式

时间:2018-01-02 11:37:05      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:func   elseif   mat   cti   自定义函数   size   body   fun   pre   

function format_byte($filesize) {
    if($filesize >= 1073741824) {
        $filesize = round($filesize / 1073741824 * 100) / 100 . ‘ gb‘;
    } elseif($filesize >= 1048576) {
        $filesize = round($filesize / 1048576 * 100) / 100 . ‘ mb‘;
    } elseif($filesize >= 1024) {
        $filesize = round($filesize / 1024 * 100) / 100 . ‘ kb‘;
    } else {
        $filesize = $filesize . ‘ bytes‘;
    }
    return $filesize;
}

  

php自定义函数: 文件大小转换成智能形式

标签:func   elseif   mat   cti   自定义函数   size   body   fun   pre   

原文地址:https://www.cnblogs.com/upup2015/p/8175678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!