Skip to content

Instantly share code, notes, and snippets.

@leyluj
Created December 22, 2015 08:08
Show Gist options
  • Save leyluj/2a170157453750e7b6c5 to your computer and use it in GitHub Desktop.
Save leyluj/2a170157453750e7b6c5 to your computer and use it in GitHub Desktop.
function convert($size)
{
$unit=array('b','kb','mb','gb','tb','pb');
return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment