Created
June 4, 2014 10:42
-
-
Save cahva/88fd24056a6c92df346a to your computer and use it in GitHub Desktop.
Format bytes to B,KB,MB,GB or TB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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