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

$x = $x - floor($x)

$x = fmod($x, 1);

Here's a demo:

<?php
$x = 25.3333;
$x = fmod($x, 1);
var_dump($x);

Should ouptut

double(0.3333)

Credit.