How to format numbers with commas in php (code example)

藏色散人
Release: 2023-04-08 12:04:01
forward
2220 people have browsed it

How to format numbers with commas in php (code example)

Today’s work requires formatting numbers to display the current commodity price, such as 2335.32, which needs to be formatted as 2,335.32 to display like this. I wrote a function. I always feel that such a simple function requires more than 30 lines of code to complete.

The specific code is as follows:

 $len){ $number_temp = substr($integer,0,($len - $pos)).$join.$number_temp; break; } $i++; } //处理小数部分 if(!empty($decimal)){ $number_temp = !empty($number_temp) ? $number_temp.".".$decimal : "0.".$decimal; } return $number_temp; } $result = numberFormat(1234567.5564); print_r($result); ?> //结果输出1,234,567.5564
Copy after login

For more PHP related knowledge, please visitphp tutorial!

The above is the detailed content of How to format numbers with commas in php (code example). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:cnblogs.com
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
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!