Skip to content

Instantly share code, notes, and snippets.

@cahva
Created June 4, 2014 10:42
Show Gist options
  • Save cahva/88fd24056a6c92df346a to your computer and use it in GitHub Desktop.
Save cahva/88fd24056a6c92df346a to your computer and use it in GitHub Desktop.
Format bytes to B,KB,MB,GB or TB
function formatFileSize($size)
{
$units = array(' B', ' KB', ' MB', ' GB', ' TB');
for ($i = 0; $size > 1024; $i++) { $size /= 1024; }
return round($size, 2).$units[$i];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment