以人類可讀格式計算檔案大小
以千位元組、兆位元組或千兆位元組等有意義的單位確定檔案大小是一項常見任務。當檔案以位元組儲存時,為了方便使用者顯示,需要轉換。
解
PHP 函數 formatBytes() 提供了一個解。它的運作原理如下:
function formatBytes($bytes, $precision = 2) { $units = array('B', 'KB', 'MB', 'GB', 'TB'); $bytes = max($bytes, 0); $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); $pow = min($pow, count($units) - 1); // Uncomment one of the following alternatives // $bytes /= pow(1024, $pow); // $bytes /= (1 << (10 * $pow)); return round($bytes, $precision) . $units[$pow]; }
實作
範例
要將5445632 位元組轉換為具有兩位小數的使用者友善格式:
echo formatBytes(5445632, 2); // Output: 5.24 MB
以上是如何在 PHP 中將檔案大小從位元組轉換為人類可讀的格式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!