Skip to content

Instantly share code, notes, and snippets.

@blood72
Created April 27, 2020 09:51
Show Gist options
  • Save blood72/1e22a0875131b3c14fd2ddc3708e7833 to your computer and use it in GitHub Desktop.
Save blood72/1e22a0875131b3c14fd2ddc3708e7833 to your computer and use it in GitHub Desktop.
<?php
if (! function_exists('random_float')) {
/**
* Generates random float number.
*
* @param int|float $min
* @param int|float $max
* @param int $digit
* @return float|int
* @throws \Exception
*/
function random_float($min, $max, int $digit = 10) {
$pow = pow(10, $digit);
return mt_rand($min * $pow, $max * $pow) / $pow;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment