Find maximum of given values

by kalai 2010-03-12 11:41:30

In php we can find maximum values using Max function

<?php
echo(max(5,7));
echo(max(-3,5));
echo(max(-3,-5));
echo(max(7.25,7.30))
?>

Result
7
5
-3
7.3

Tagged in:

1242
like
0
dislike
0
mail
flag

You must LOGIN to add comments