<?php
$result=fprand(10,15,2);
echo $result;
function fprand($intMin,$intMax,$intDecimals) {
if($intDecimals) {
$intPowerTen=pow(10,$intDecimals);
return rand($intMin,$intMax)+(rand(0,$intPowerTen)/$intPowerTen);
}
else
return rand($intMin,$intMax);
}
No replies to this topic
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account

Back to top









