note 98044 deleted from function.number-format by danbrown

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: camerongreen at gmail dot com 

----

Seen a couple of attempts at removing non zero decimal places, best way is to use trim as per http://www.php.net/manual/en/function.trim.php#54473

eg,

<?php

function my_number_format($number, $places=2) {
      return trim(trim(number_format($number, $places), 0), ".");
}
 
?>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.