Answers for "minimum php"

PHP
1

php int min

PHP_INT_MAX (int) // The largest integer supported in this build of PHP. 
  
PHP_INT_MIN (int) // The smallest integer supported in this build of PHP.
Posted by: Guest on May-29-2021
0

min function in php

<?php
echo(min(2,4,6,8,10) . "<br>"); # output: 2
echo(min(22,14,68,18,15) . "<br>"); # output: 14
echo(min(array(4,6,8,10)) . "<br>"); # output: 4
echo(min(array(44,16,81,12))); # output: 12
?>
Posted by: Guest on July-03-2021

Browse Popular Code Answers by Language