6

countformat

count_format
SYNOPSIS

count_format($n, $point='.', $sep=',')

DESCRIPTION
CODE
  1. function count_format($n, $point='.', $sep=',', $spacing='') {
  2.     if ($n < 0) {
  3.         return 0;
  4.     }
  5.  
  6.     if ($n < 10000) {
  7.         return number_format($n, 0, $point, $sep);
  8.     }
  9.  
  10.     $d = $n < 1000000 ? 1000 : 1000000;
  11.  
  12.     $f = round($n / $d, 1);
  13.  
  14.     return number_format($f, $f - intval($f) ? 1 : 0, $point, $sep) . $spacing . ($d == 1000 ? 'k' : 'M');
  15. }

Commentaires

Votre commentaire :
[p] [b] [i] [u] [s] [quote] [pre] [br] [code] [url] [email] strip aide 2000

Entrez un maximum de 2000 caractères.
Améliorez la présentation de votre texte avec les balises de formatage suivantes :
[p]paragraphe[/p], [b]gras[/b], [i]italique[/i], [u]souligné[/u], [s]barré[/s], [quote]citation[/quote], [pre]tel quel[/pre], [br]à la ligne,
[url]http://www.izend.org[/url], [url=http://www.izend.org]site[/url], [email]izend@izend.org[/email], [email=izend@izend.org]izend[/email],
[code]commande[/code], [code=langage]code source en c, java, php, html, javascript, xml, css, sql, bash, dos, make, etc.[/code].