Home  >  Article  >  Backend Development  >  How to convert to two decimal places in php

How to convert to two decimal places in php

PHPz
PHPzOriginal
2020-09-25 14:08:283264browse

How to convert php to two decimal places: 1. Use "round()" to round floating point numbers; 2. Use "sprintf" to format strings; 3. Use thousands grouping to format numbers The function "number_format()".

How to convert to two decimal places in php

Recommended: "PHP Video Tutorial"

Three ways to retain two decimal places in PHP

/**
 * PHP保留两位小数的几种方法
 * @link http://www.phpddt.com
 */
$num = 10.4567;
//第一种:利用round()对浮点数进行四舍五入
echo round($num,2);  //10.46
//第二种:利用sprintf格式化字符串
$format_num = sprintf("%.2f",$num);
echo $format_num;  //10.46
//第三种:利用千位分组来格式化数字的函数number_format()
echo number_format($num, 2);  //10.46
//或者如下
echo number_format($num, 2, '.', '');  //10/46

The above is the detailed content of How to convert to two decimal places in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:How to set token in phpNext article:How to set token in php