
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Min Function in PHP
The min() function Returns the minimum value of an array.
Syntax
min(arr_values); or min(val1,val2,...);
Parameters
arr_values − The array with values.
val1, val2 − The values to compare.
Return
The min() function Returns the minimum value of an array.
Example
<?php echo (min(70, 89, 12, 34, 23, 66, 34)); ?>
Output
12
Example
Let us see another example −
<?php echo (min(array(70, 89, 12, 34, 23, 66, 34))); ?>
Output
12
Advertisements