Created
November 3, 2025 13:56
-
-
Save erdum/b7d4977bfcee1b7e01c5d7c9ae3f9004 to your computer and use it in GitHub Desktop.
Bytes to Human Readable Formatter
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
| <?php | |
| function bytesToHuman($bytes) | |
| { | |
| $units = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB']; | |
| for ($i = 0; $bytes > 1024; $i++) { | |
| $bytes /= 1024; | |
| } | |
| return round($bytes, 2).' '.$units[$i]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment