PHP Count round thousand to a K style count like facebook Share . . . Twitter Button ect

后端 未结 12 1861
北恋
北恋 2020-12-13 05:15

Ok so I am trying to turn my hit counter to round thousands to a single digit too display 3 thousand hits as 3K for example, like the Facebook Share and Twitter Tweet Button

12条回答
  •  隐瞒了意图╮
    2020-12-13 05:53

    function shortNumber($num) 
    {
        $units = ['', 'K', 'M', 'B', 'T'];
        for ($i = 0; $num >= 1000; $i++) {
            $num /= 1000;
        }
        return round($num, 1) . $units[$i];
    }
    

    I adapted this one from a function created to display bytes in human readable form by bashy here:

    https://laracasts.com/discuss/channels/laravel/human-readable-file-size-and-time

提交回复
热议问题