📜 ⬆️ ⬇️

Size converter function from * KB, * MB, * GB

Function to convert file sizes, from bytes to megabytes, gigabytes, etc.

function file_size($size)
{
$filesizename = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
return $size ? round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $filesizename[$i] : '0 Bytes';
}

')

Source: https://habr.com/ru/post/44984/


All Articles