PHP取整数函数常用的四种方法:
int intval ( mixed $var [, int $base = 10 ] )
通过使用指定的进制 base 转换(默认是十进制),返回变量 var 的 integer 数值。 intval() 不能用于 object,否则会产生 E_NOTICE 错误并返回 1。
echo intval(42); // 42
echo intval(4.2); // 4
echo intval('42'); // 42
round(number,precision,mode);
对浮点数进行四舍五入。
echo round(42.12123); // 42
echo round(42.62123); // 43
echo round(42.12123, 0); // 42
echo round(42.12123, 2); // 42.12
echo round(4212123, -2); // 421212300
返回不小于 value 的下一个整数,value 如果有小数部分则进一位。
echo ceil(42.12123); // 43
echo ceil(42.62123); // 43
返回不大于 value 的下一个整数,将 value 的小数部分舍去取整。
echo floor(42.12123); // 42
echo floor(42.62123); // 42
number_format() 函数通过千位分组来格式化数字。
number_format(number,decimals,decimalpoint,separator);
echo number_format("1000000"); // 1,000,000
echo number_format("1000000",2); // 1,000,000.00
echo number_format("1000000",2,",","."); // 1.000.000,00
echo number_format("1000000",2,"*","."); // 1.000.000*00
echo number_format("1000000",2,".",""); // 1000000.00
本文为冯奎原创文章,转载无需和我联系,但请注明来自冯奎博客fengkui.net
最新评论