Skip to content

Instantly share code, notes, and snippets.

@grvoyt
Created July 6, 2018 21:32
Show Gist options
  • Save grvoyt/fddd164c5f87843420b3cb2ec83bc7ff to your computer and use it in GitHub Desktop.
Save grvoyt/fddd164c5f87843420b3cb2ec83bc7ff to your computer and use it in GitHub Desktop.
function bytes($a) {
$unim = array("B","KB","MB","GB","TB","PB");
$c = 0;
while ($a>=1024) {
$c++;
$a = $a/1024;
}
return number_format($a,($c ? 2 : 0),",",".")." ".$unim[$c];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment