byte(字节)转换为mb(兆)
byte(字节)转换为mb(兆)
byte(字节)转换为mb(兆)
function formatBytes($bytes) {
if($bytes >= 1073741824) {
$bytes = round($bytes / 1073741824 * 100) / 100 . 'GB';
} elseif($bytes >= 1048576) {
$bytes = round($bytes / 1048576 * 100) / 100 . 'MB';
} elseif($bytes >= 1024) {
$bytes = round($bytes / 1024 * 100) / 100 . 'KB';
} else {
$bytes = $bytes . 'Bytes';
}
return $bytes;
}
- 上一篇:php clone
- 下一篇:一个非常好用的验证码工具类
精彩图集
精彩文章






