Initial commit
This commit is contained in:
13
php/Math/PHP function to get random float numbers.php
Normal file
13
php/Math/PHP function to get random float numbers.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
function rand_float($st_num=0,$end_num=1,$mul=1000000)
|
||||
{
|
||||
if ($st_num>$end_num) return false;
|
||||
return mt_rand($st_num*$mul,$end_num*$mul)/$mul;
|
||||
}
|
||||
echo rand_float()."\n";
|
||||
echo rand_float(0.6)."\n";
|
||||
echo rand_float(0.5,0.6)."\n";
|
||||
echo rand_float(0,20)."\n";
|
||||
echo rand_float(0,3,2)."\n";
|
||||
echo rand_float(0,2,20)."\n";
|
||||
?>
|
||||
Reference in New Issue
Block a user