<?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
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.