I want to convert a number into a string representation with a format similar to Stack Overflow reputation display.
e.g.
- 999 == '999'
- 1000 == '1,000'
- 9999 == '9,999'
- 10000 == '10k'
- 10100 == '10.1k'
|
I want to convert a number into a string representation with a format similar to Stack Overflow reputation display. e.g.
|
|||||||||
|
|
Another approach that produces exactly the desired output:
Check the output results here. |
|||||
|
|
UPDATE: CMS got the check and provides a superior answer. Send any more votes his way.
Output:
|
|||||||||||||||
|
|
Here is a function in PHP which is part of iZend - http://www.izend.org/en/manual/library/countformat:
|
|||
|
|
|
divide by 1000 then if result is greater than 1 round the number and concantenate a "k" on the end. If the result is less than 1 just output the actual result! |
|||
|