PHP Redondear y transformar一个十进制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Redondear y transformar一个十进制相关的知识,希望对你有一定的参考价值。
Round Off Decimal
Round a number up or down or Round off a floating decimal point number using PHP�s functions round().
Example. round();
echo round(3.4); // 3
echo round(3.5); // 4
echo round(3.6); // 4
echo round(3.6, 0); // 4
echo round(1.95583, 2); // 1.96
echo round(1241757, -3); // 1242000
echo round(5.045, 2); // 5.05
echo round(5.055, 2); // 5.06
Convert to Decimal Point
Example. number_format();
$number = �28�;
$number = number_format($number, 2);
echo $number; // equals �28.00�
以上是关于PHP Redondear y transformar一个十进制的主要内容,如果未能解决你的问题,请参考以下文章
HDOJ 5639 Transform
CSS3 transform 缩放
transform
2D功能函数
css2D转换(transform)
第98天:变换transform详解