Skip to content

Instantly share code, notes, and snippets.

@taichunmin
Created June 4, 2014 18:21
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 taichunmin/88e4cc849f668bdd27e2 to your computer and use it in GitHub Desktop.
Save taichunmin/88e4cc849f668bdd27e2 to your computer and use it in GitHub Desktop.
<?php
/*
2012/04/21 taichunmin
將檔案大小顯示成為比較好讀的方式
*/
function tai_readableFileSize($size)
{
$unit = array('Byte','KB','MB','GB','TB','PB');
$ia = 0;
while($size>1000)
{
$size/=1024;
$ia++;
}
return sprintf("%.1f ",$size).$unit[$ia];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment