Hi Guys,
In this example,I will learn you how to compare two date in php.you can easy and simply compare to date in php.
Given two dates (date1 and date2) and the task is to compare the given dates. Comparing two dates in PHP is simple when both the dates are in the same format but the problem arises when both dates are in a different format.
Example:
<?php
$date1=date_create("2020-04-12");
$date2=date_create("2020-12-12");
$diff=date_diff($date1,$date2);
echo $diff->format("%R%a days");
?>
Output:
+244 days
It will help you...