I have my custom plugin for set and get post view count on wordpress. My function give me post view count like 3833056 or 19834 or 785923873.
I can format this counts with number_format() function but its give me 3833056 => 3,833,056
I want to format this post view counts like (3833056 => 3.8 million) or (19834 => 19.8 thousand) or (1284 => 1.2 thousand)
How can i do this with php
Thanks