如何隐藏PHP中的位数只是显示3个

时间:2014-02-02 11:16:01

标签: php

您好我想隐藏上传显示表格中的额外数字。

我只希望1.72显示其他人应该隐藏。

怎么做?

 - Your Current file size is:1.7289695739746 MB
 I need like this 
 - Your Current file size is:1.72 MB

others numbers after 72 should hide.

3 个答案:

答案 0 :(得分:1)

round(2.590,2); //output: 2.59 

行? ;)

答案 1 :(得分:1)

尝试sprintf()功能:

echo sprintf( "Your Current file size is:%.2f MB", $yourSizeVariable );

答案 2 :(得分:1)

PHP的printf函数可以帮助您:

printf("- Your Current file size is:%.2f MB",$value);

格式字符串解释为here,这是相关部分:

  

一个可选的精度说明符,以句点形式(“。”)后跟一个可选的十进制数字字符串,表示浮点数应显示多少个十进制数字。