Answers for "php random 2 decimals number"

PHP
1

php random float number with 2 decimal places

$decimals = 2; // number of decimal places
$div = pow(10, $decimals);

// Syntax: mt_rand(min, max);
mt_rand(0.01 * $div, 0.05 * $div) / $div;
Posted by: Guest on March-02-2021
0

php random 5 digit number

$limit = 3;
echo random_int(10 ** ($limit - 1), (10 ** $limit) - 1);
Posted by: Guest on May-09-2021

Browse Popular Code Answers by Language