我正在尝试删除小数值
我的价值:1277902800000.0
我尝试round(1277902800000.0)
它对我不起作用
找到答案我的本地机器运行32bt配置就是问题。
答案 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)