Php – What’s the best way to get the fractional part of a float in PHP

php

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.

Best Solution

$x = $x - floor($x)