标签: php converter
希望将字节转换为最接近的MB舍入。
所以..
605768 would become 1 not 0.577705 1704342 would become 2 not 1.625387192
等
我该怎么做?我只想要返回的值。
由于
答案 0 :(得分:2)
如果您使用round功能,则可以收到预期的结果。例如
round
echo round((605768/(1024 * 1024)));将生成1。
echo round((605768/(1024 * 1024)));
答案 1 :(得分:1)
使用圆功能,如
echo round(0.57705);
这意味着像
参考THIS