How does one generate a random float between 0 and 1 in PHP?
I\'m looking for the PHP\'s equivalent to Java\'s Math.random().
Math.random()
Example from documentation :
function random_float ($min,$max) { return ($min+lcg_value()*(abs($max-$min))); }