Skip to content

Instantly share code, notes, and snippets.

@minedun6
Created November 9, 2018 15:08
Show Gist options
  • Save minedun6/14d9d2403627a522a902a932951fcc6a to your computer and use it in GitHub Desktop.
Save minedun6/14d9d2403627a522a902a932951fcc6a to your computer and use it in GitHub Desktop.
format size (GO, MO, KB, ...)
<?php
function intWithStyle($n)
{
if ($n < 1000) return $n;
$suffix = ['','k','M','G','T','P','E','Z','Y'];
$power = floor(log($n, 1000));
return round($n/(1000**$power),1,PHP_ROUND_HALF_EVEN).$suffix[$power];
};
// use
echo intWithStyle(1000000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment