w3resource

PHP Math Exercises: Find earliest and latest dates from a list of dates

PHP math: Exercise-7 with Solution

Find earliest and latest dates from a list of dates.

Pictorial Presentation:

PHP Math Exercises: Find earliest and latest dates from a list of dates

Sample Solution:

PHP Code:

<?php
$dates = array('2015-02-01', '2015-02-02', '2015-02-03');
echo "Latest Date: ". max($dates)."\n";
echo "Earliest Date: ". min($dates)."\n";
?>

Sample Output:

Latest Date: 2015-02-03                                     
Earliest Date: 2015-02-01

Flowchart :

Flowchart: Find earliest and latest dates from a list of dates

PHP Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a PHP script to get the information regarding memory usage in KB or MB etc.
Next: Write a PHP function to round a float away from zero to a specified number of decimal places.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.