byte(字节)转换为mb(兆)
程序员文章站
2022-05-18 12:30:27
...
1. [代码][PHP]代码
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; }
上一篇: JS动态给对象添加属性和值的实现方法
下一篇: 关于类的疑惑,该怎么处理