Skip to content

Instantly share code, notes, and snippets.

@erdum
Created November 3, 2025 13:56
Show Gist options
  • Select an option

  • Save erdum/b7d4977bfcee1b7e01c5d7c9ae3f9004 to your computer and use it in GitHub Desktop.

Select an option

Save erdum/b7d4977bfcee1b7e01c5d7c9ae3f9004 to your computer and use it in GitHub Desktop.
Bytes to Human Readable Formatter
<?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