HomeLanguagesPHP max( ) Function

PHP max( ) Function

The max() function of PHP is used to find the numerically maximum value in an array or the numerically maximum value of several specified values. The max() function can take an array or several numbers as an argument and return the numerically maximum value among the passed parameters. The return type is not fixed, it can be an integer value or a float value based on input.

Syntax:

max(array_values)  

or

max(value1, value2, ...)

Parameters: This function accepts two different types of arguments which are explained below:

  1. array_values : It specifies an array containing the values.
  2. value1, value2, … : It specifies two or more than two values to be compared.

Return Value: The max() function returns the numerically maximum value.

Examples:

Input : max(12, 4, 62, 97, 26)
Output : 97

Input : max(array(28, 36, 87, 12))
Output : 87

Below programs illustrate the working of max() in PHP:

Program 1:




<?php
  
echo (max(12, 4, 62, 97, 26));
  
?>


Output:

97

Program 2:




<?php
  
echo (max(array(28, 36, 87, 12)). "<br>");
  
?>


Output:

87

Important points to note :

  • max() function is used to find the numerically maximum number.
  • max() function can be used on two or more than two values or it can be used on an array.
  • The value returned is of mixed data type.

Reference:
http://php.net/manual/en/function.max.php

RELATED ARTICLES

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6924 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12150 POSTS0 COMMENTS
Shaida Kate Naidoo
7060 POSTS0 COMMENTS
Ted Musemwa
7302 POSTS0 COMMENTS
Thapelo Manthata
7018 POSTS0 COMMENTS
Umr Jansen
7006 POSTS0 COMMENTS