Convert exponential number to decimal in php

前端 未结 4 1852
被撕碎了的回忆
被撕碎了的回忆 2020-11-30 15:28

I have a floating point number in exponential format i.e. 4.1595246940817E-17 and I want to convert it into decimal number like 2.99 etc.

Any help will

4条回答
  •  一个人的身影
    2020-11-30 16:02

    Using the BC Math library you can bcscale() the numbers to a predetermined decimal, which sets the parameter for future calculations that require arithmetic precision.

    bcscale(3);
    echo bcdiv('105', '6.55957'); // 16.007
    

提交回复
热议问题