How to find the Maximum of Two Numbers in PHP - Step by Step Examples
How to find the Maximum of Two Numbers in PHP ?
Answer
To find the maximum of two numbers in PHP, you can use the max function.
✐ Examples
1 Maximum of Two Numbers
In this example,
- We assign values to two variables
$a
and$b
. - We use the
max
function to find the maximum of$a
and$b
and store it in a variable named$max
. - We echo the maximum value.
PHP Program
<?php
// Maximum of Two Numbers
$a = 10;
$b = 15;
$max = max($a, $b);
echo "Maximum of $a and $b is: $max";
?>
Output
Maximum of 10 and 15 is: 15
Summary
In this tutorial, we learned How to find the Maximum of Two Numbers in PHP language with well detailed examples.