如何在PHP中删除十进制值?

时间:2017-12-26 14:10:54

标签: php laravel

我正在尝试删除小数值

我的价值:1277902800000.0

我尝试round(1277902800000.0)它对我不起作用

  

找到答案我的本地机器运行32bt配置就是问题。

3 个答案:

答案 0 :(得分:0)

使用以下函数删除PHP中的十进制值。

<?php
echo round(1277902800000.0); // Round the number, this example would echo 1277902800000.
echo '<br />';
echo floor(1277902800000.0); // Round down, this would echo 1277902800000.
echo '<br />';
echo ceil(1277902800000.0); // Round up, this would be 1277902800000.
?>

答案 1 :(得分:0)

尝试使用floor()功能

floor(1277902800000.0)

答案 2 :(得分:0)

number_format(1277902800000.0)

参考http://php.net/manual/en/function.number-format.php