Skip to content

Instantly share code, notes, and snippets.

View lohiloki's full-sized avatar

Lohith M lohiloki

  • Maximizer Ventures Pvt. Ltd.
  • India
View GitHub Profile
@lohiloki
lohiloki / short-number-format.php
Created May 8, 2019 17:29 — forked from RadGH/short-number-format.php
Short Number Formatter for PHP (1000 to 1k; 1m; 1b; 1t)
<?php
// Converts a number into a short version, eg: 1000 -> 1k
// Based on: http://stackoverflow.com/a/4371114
function number_format_short( $n, $precision = 1 ) {
if ($n < 900) {
// 0 - 900
$n_format = number_format($n, $precision);
$suffix = '';
} else if ($n < 900000) {