Skip to content

Instantly share code, notes, and snippets.

@LaffinToo
Created December 8, 2011 08:56
Show Gist options
  • Save LaffinToo/1446505 to your computer and use it in GitHub Desktop.
Save LaffinToo/1446505 to your computer and use it in GitHub Desktop.
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