VOOZH about

URL: https://www.geeksforgeeks.org/php/php-mt_getrandmax-function/

⇱ PHP mt_getrandmax() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PHP mt_getrandmax() Function

Last Updated : 14 Sep, 2023

The mt_getrandmax() is an inbuilt function in PHP that is used to return the largest possible value of random numbers.

Syntax

mt_getrandmax(): int

Parameter

This function does not accept any parameter.

Return Value

The mt_getrandmax() function returns the integer representing the maximum value that can be generated by the mt_rand() Function.

Program 1: The following program demonstrates mt_getrandmax() Function.


Output
Maximum random number: 2147483647

Program 2: The following program demonstrates mt_getrandmax() Function.


Output
Random number: 2084185664

Reference: https://www.php.net/manual/en/function.mt-getrandmax.php

Comment
Article Tags:
Article Tags: