php格式化数字输出number_format

<?php
$num = 4999.944444;
$formattedNum = number_format($num).PHP_EOL;
echo $formattedNum;
$formattedNum = number_format($num, 2);
echo $formattedNum;
5,000
4,999.94
<?php
$num = 4999.945444;
$formattedNum = number_format($num).PHP_EOL;
echo $formattedNum;
$formattedNum = number_format($num, 2);
echo $formattedNum;
5,000
4,999.95

由此可见,number_format是4舍5入的策略。

<?php
$num = 4999.944444;
$formattedNum = number_format($num).PHP_EOL;
echo $formattedNum;
$formattedNum = number_format($num, 1);
echo $formattedNum;
5,000
4,999.9
<?php
$num = 4999.954444;
$formattedNum = number_format($num).PHP_EOL;
echo $formattedNum;
$formattedNum = number_format($num, 1);
echo $formattedNum;
5,000
5,000.0

它会将留的小数位后面一位作为四舍五入的标准。

原文地址:https://www.cnblogs.com/jiqing9006/p/10625433.html

时间: 2024-10-14 01:00:03

php格式化数字输出number_format的相关文章

jqGrid格式化数字输出

科学显示4位小数金额,如80,100.5678 formatter: "currency",formatoptions: {thousandsSeparator:",", defaulValue:"",decimalPlaces:4} 科学显示4位小数金额并且带前置符号,如$80,100.5678 formatter: "currency",formatoptions: {thousandsSeparator:",&

number_format()

PHP取小数点后几位与格式化数字 number_format() 函数通过千位分组来格式化数字. 先来看看程序例子吧. 01 <?php 02 $num = 500000; 03 04 echo number_format($num); 05 // 500,000 06 07 echo number_format($num, 2); 08 // 500,000.00 09 10 echo number_format($num, 3, ".", ","); 11

PHP字符串相关的方法

//1.去掉空格及特殊字符 trim函数 //$str='asdf ghjkl\t'; //echo($str);//trim 去掉两端空格 //echo(trim($str));//echo('test'); //移除两端指定的字符 as 和 \t//echo(trim($str,'as\t')); //$str1=' asdfg';//移除左边的空格//echo(ltrim($str1)); //$str2='lamco.com.cn';////echo(ltrim($str2,'lam')

PHP字符串 集合的相关函数

PHP第三次字符串处理函数<?php/** * Created by PhpStorm. * User: yangguojun * Date: 16/3/16 * Time: 下午7:26 *///1.去掉空格及特殊字符 trim函数 //$str='asdf ghjkl\t'; //echo($str);//trim 去掉两端空格 //echo(trim($str));//echo('test'); //移除两端指定的字符 as 和 \t//echo(trim($str,'as\t')); /

PHP字符串练习题

题目要求:将一个字符串1234567890转换成1,234,567,890 解法一:将这两个字符串倒序来看即将0987654321转换成098,765,432,1,那么可以将0987654321分割成每个单元是三个长度字符串的数组array(098,765,432,1),然后将数组和逗号结合成字符串,然后反转即可得到最终结果 $str='1234567890'; function change($str) { $str1=strrev($str); //先将字符串反转 $arr=str_spli

php,字符串(二)

1.比较字符串 (1)按字节进行字符串的比较 int strcmp(string str1,string str2):参数str和参数str2指定要比较的两个字符串.如果相等则函数返回为0:如果参数str1大于参数str2,则函数返回值大于0:如果参数str1小于参数str2,则函数返回值小于0:该函数区分大小写 int strccasemp(string str1,string str2):参数str和参数str2指定要比较的两个字符串.如果相等则函数返回为0:如果参数str1大于参数str2

【Swift】iOS开发小技巧(一)

前言 边开发边学习,边攒经验,汇总一下记录到这里 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs.com 农民伯伯: http://over140.cnblogs.com 1.隐藏/显示密码功能 光设置secureTextEntry还不行,你会发现UITextField在切换到显示密码时会多一个空字符,看着巨别扭,需要在更改secureTextEntry后进行如下设置: let pwd = psdField.text        self.psdFiel

PHP字符串的操作

Php字符串的操作 一 去除字符串的左右空格 Trim() ; string trim(string str [,string charlist]); 参数二是指定删除字符串中的那些字符 , Itrim()  删除左边的空格或 字符 Rtrim() 删除右边的空格或字符: 二 自动转义 与还原字符串数据 addcslashes() 用于字符串加入  \ 线 4.stripcslashes() 去除字符串的 \线 三  获取字符串的长度 strLen(); 注意 : 汉字占两个字符,数字.英文.小

MyReport.Form运算符函数说明文档

目录 运算符 2 统计函数 2 求和:Sum(field, start, end) 2 条件求和:SumIf(field, cond, start, end) 2 查询数据:Get(field, cond, start, end) 3 求平均:Avg(field, start, end) 3 条件求平均:AvgIf(field, cond, start, end) 3 条件计数:CountIf(cond, start, end) 3 最大值:Max(field, start, end) 3 最小