PHP rounding, how many decimal places to keep, formatting numbers

WBOY
Release: 2016-07-25 08:45:13
Original
1162 people have browsed it
  1. /**1.number_format*/
  2. $number = 1234.56789;
  3. $nombre_format_francais = number_format($number, 2, ',', ' ');
  4. $english_format_number = number_format($ number, 2, '.', '');
  5. /**2.round*/
  6. $number = 1234.56789;
  7. echo round($number ,2);
  8. /**3.sprintf*/
  9. $formatted = sprintf ("¥%01.2f.", $money);
  10. echo $formatted;
  11. ?>
Copy code

Several digits, rounding, PHP


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!