Answers for "php int max"

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
-1

php max

echo max(2, 3, 1, 6, 7);  // 7
echo max(array(2, 4, 5)); // 5
Posted by: Guest on February-27-2021

Browse Popular Code Answers by Language