mirror of
https://github.com/php/web-windows.git
synced 2026-03-23 23:12:07 +01:00
10 lines
258 B
PHP
10 lines
258 B
PHP
<?php
|
|
function bytes2string($size, $precision = 2) {
|
|
$sizes = array('YB', 'ZB', 'EB', 'PB', 'TB', 'GB', 'MB', 'kB', 'B');
|
|
$total = count($sizes);
|
|
|
|
while($total-- && $size > 1024) $size /= 1024;
|
|
|
|
return round($size, $precision).$sizes[$total];
|
|
}
|