<?php $dates = ['20-05-2015', '02-01-2015', '30-03-2015', '10-01-1990']; $unix = array_map('strtotime', $dates); printf( "Latest Date: %s\nEarliest Date: %s", date('d-m-Y', max($unix)), date('d-m-Y', min($unix)) );
You have javascript disabled. You will not be able to edit any code.