Skip to content

Instantly share code, notes, and snippets.

@blackswansolutions
Forked from LaffinToo/bytesize.php
Created August 9, 2012 17:32
Show Gist options
  • Save blackswansolutions/3306230 to your computer and use it in GitHub Desktop.
Save blackswansolutions/3306230 to your computer and use it in GitHub Desktop.
PHP: Tracker - Returns units based on bytes
function ByteSize($size)
{
static $unit = array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
$size/=(pow(1024,($idx=floor(log($size)/log(1024)))));
return number_format($size,2).$unit[$idx];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment