PHP教程:格式化数字 每三个数加一个逗号
经常接触到一些大数据的朋友都知道,为了方便更快地读出一个数值的大小,开发者一般都会对输出的较大的数值进行格式化:一般格式化的方式呢,有用类似XXX万XXXX的格式,不过更常见到的是给数值每三个数字后面加一个半角的逗号。这也是最常见到的一种格式。下
经常接触到一些大数据的朋友都知道,为了方便更快地读出一个数值的大小,开发者一般都会对输出的较大的数值进行格式化:一般格式化的方式呢,有用类似XXX万XXXX的格式,不过更常见到的是给数值每三个数字后面加一个半角的逗号。这也是最常见到的一种格式。下面,我们就来看看,如何将一个较大的数值格式化成每三个数字加逗号的格式。(其实呢,Wordpress上面的评论次数数值达到一定程度的时候,也是采用这种格式对数值进行格式化的。)
function number_format($num){ if(!is_numeric($num)){//首先对变量进行判断 看看是否是数字或数字字符串 return false; } $num=explode('.',$num);//首先呢,利用小数点把数值分成整数和小数两个部分,并保存到$num变量里面 $rl=$num[1];//我们都知道,小数部分是位于数值小数点之后,所以它的键值是1 $j=strlen($num[0])%3;//接下来我们把整数部分除以三求余数 目的是为了确定最前面不足三位数的长度 $sl=substr($num[0],0,$j);//然后 我们利用substr,从第0个数值(首个数字),向后取$j个数字,实际上相当于截断了最前面的$j个数字 $sr=substr($num[0],$j);//下来吧 截取位置超过(包含)第三的部分,也就是整数部分,除去$sl部分剩下的段 $i=0; while($i <blockquote><p>实际上呢,主要是explode和substr起关键作用。前面一个主要是把数值或者数值字符串转成数组,后面一个负责截取!!</p></blockquote> <p><span style="font-weight:bold;text-shadow:0 1px 0 #ddd;">声明:</span> 本文采用 BY-NC-SA 协议进行授权 | IT路人<br>转载请注明转自《PHP教程:格式化数字 每三个数加一个逗号》</p>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
