What's the best way to get the fractional part of a float in PHP?

前端 未结 10 922
不思量自难忘°
不思量自难忘° 2020-11-30 05:45

How would you find the fractional part of a floating point number in PHP?

For example, if I have the value 1.25, I want to return 0.25.

10条回答
  •  暖寄归人
    2020-11-30 06:04

    If if the number is negative, you'll have to do this:

     $x = abs($x) - floor(abs($x));
    

提交回复
热议问题