- байт (B)
- кілобайт (KB)
- мегабайт (MB)
- гігабайт (GB)
Функція:
function get_size($bytes) {
if ($bytes < 1000 * 1024) {
return number_format($bytes / 1024, 2)." KB";
} elseif ($bytes < 1000 * 1048576) {
return number_format($bytes / 1048576, 2)." MB";
} elseif ($bytes < 1000 * 1073741824) {
return number_format($bytes / 1073741824, 2)." GB";
} else {
return number_format($bytes / 1099511627776, 2)." TB";
}
}Виклик функції:
echo get_size(12345678);
// 11.77 MB
echo get_size(10251);
// 10.01 KB