Created
November 9, 2018 15:08
-
-
Save minedun6/14d9d2403627a522a902a932951fcc6a to your computer and use it in GitHub Desktop.
format size (GO, MO, KB, ...)
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 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