<?Php
echo getrandmax(); // Output 2147483647
?>
Syntax
int getrandmax ( void )
<?php
$max = getrandmax();
echo rand(0, $max);
// Output: A random number between 0 and the maximum possible value
?>
<?php
$max = getrandmax();
$randomFloat = rand() / $max;
echo $randomFloat; // Output: A random float between 0 and 1
?>
<?php
$max = getrandmax();
$min = $max / 10;
echo rand($min, $max); // Output: A random number between 1/10th of max and the max value
?>
<?php
$percentage = rand(0, getrandmax()) / getrandmax() * 100;
echo "Random percentage: $percentage%"; // Output: A random percentage between 0 and 100
?>
These examples show dynamic random number generation and how to calculate random percentages using `getrandmax()`.Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.