Skip to content

Instantly share code, notes, and snippets.

@FractalizeR
Created February 4, 2014 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FractalizeR/8800374 to your computer and use it in GitHub Desktop.
Save FractalizeR/8800374 to your computer and use it in GitHub Desktop.
<?php
function human_filesize($bytes, $decimals = 2) {
$sz = 'BKMGTP';
$factor = floor((strlen($bytes) - 1) / 3);
return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment