Gerçekten bir soru ama bir meydan okuma tür ..
Ben her zaman kullanabilir ve şimdi JavaScript ihtiyacınız Bu PHP fonksiyonu var.
function formatBytes($bytes, $precision = 0) {
$units = array('b', 'KB', 'MB', 'GB', 'TB');
$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);
$bytes /= pow(1024, $pow);
return round($bytes, $precision) . ' ' . $units[$pow];
}
Ben kısa bir şey geldi, ama kesinlik olmadan (bazı ikinci düşünceler varsa bana bildirin) yanıtlara EDIT: Teşekkürler
function format_bytes(size){
var base = Math.log(size) / Math.log(1024);
var suffixes = ['b', 'KB', 'MB', 'GB', 'TB' , 'PB' , 'EB'];
return Math.round(Math.pow(1024, base - Math.floor(base)), 0) + ' ' + suffixes[Math.floor(base)];
}