function formatBytes($bytes, $precision = 2) { $units = array('B', 'KB', 'MB', 'GB', 'TB'); $bytes = max($bytes, 0); $pow = floor(($bytes ? log($bytes) : 0) ... ... <看更多>
Search
Search
function formatBytes($bytes, $precision = 2) { $units = array('B', 'KB', 'MB', 'GB', 'TB'); $bytes = max($bytes, 0); $pow = floor(($bytes ? log($bytes) : 0) ... ... <看更多>
static String formatBytes(int bytes, int decimals) {. if (bytes <= 0) return "0 B";. const suffixes = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];. ... <看更多>
... <看更多>