mirror of
https://github.com/itflow-org/itflow
synced 2026-07-23 08:50:42 +00:00
Move Guest Function formatBytes to root shared functions and use in files and files section in contact
This commit is contained in:
@@ -69,16 +69,3 @@ function getFileIcon($file_extension) {
|
||||
return 'file';
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Formats bytes into human readable file sizes
|
||||
*/
|
||||
function formatBytes($bytes, $precision = 2) {
|
||||
$units = array('B', 'KB', 'MB', 'GB', 'TB');
|
||||
|
||||
for ($i = 0; $bytes > 1024 && $i < count($units) - 1; $i++) {
|
||||
$bytes /= 1024;
|
||||
}
|
||||
|
||||
return round($bytes, $precision) . ' ' . $units[$i];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user