Friday, September 26, 2025
HomeLanguagesFind Number of Months & Days Between Two Dates in PHP

Find Number of Months & Days Between Two Dates in PHP

Sometimes you need to find out the number of months and number of days between two or more dates. There are many functions or methods in PHP for this. Using these, you can find/get/calculate them between 2 or more dates.

In this tutorial, you will learn how to find or calculate number of days and month between two dates in PHP.

How to Find the Number of Months Between Two Dates in PHP

By using the following ways, you can easily get/find/calculate numbers of months and days between two dates in PHP:

  • Calculate the number of months between two dates in PHP
  • Calculate the number of days between two dates in PHP

Calculate the number of months between two dates in PHP

Using the PHP DateTime(), diff(), and strtotime() functions, you can get or calculate the number of months between two dates in PHP.

How to use DateTime() and diff() method to find the number of months between two dates? Here is first example of this:

$date1 = new DateTime('2022-03-15');
$date2 = new DateTime('2023-01-01');
$interval = $date1->diff($date2);
$months = $interval->y * 12 + $interval->m;
echo "Number of months between the two dates: " . $months;

How to use strtotime() and round() method to find the number of months between two dates? Here is another example of this:

$date1 = strtotime('2022-03-15');
$date2 = strtotime('2023-01-01');
$months = round(abs($date2 - $date1) / (30.44 * 24 * 60 * 60));
echo "Number of months between the two dates: " . $months;

Calculate the number of days between two dates in PHP

Also, you can use the PHP DateTime(), diff(), and strtotime() functions, To get or calculate the number of days between two dates in PHP.

How to use DateTime() and diff() method to find the number of days between two dates? Here is first example of this:

$date1 = new DateTime('2022-03-15');
$date2 = new DateTime('2023-01-01');
$interval = $date1->diff($date2);
$days = $interval->days;
echo "Number of days between the two dates: " . $days;

How to use strtotime() and round() method to find the number of days between two dates? Here is another example of this:

$date1 = strtotime('2022-03-15');
$date2 = strtotime('2023-01-01');
$days = round(abs($date2 - $date1) / (60 * 60 * 24));
echo "Number of days between the two dates: " . $days;

Conclusion

In conclusion, there are different ways to find the number of months and days between two dates in PHP. But in this tutorial, you have learned simple and easy ways to find number of months and days between two dates.

Recommended Tutorials

RELATED ARTICLES

Most Popular

Dominic
32320 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6683 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6795 POSTS0 COMMENTS
Ted Musemwa
7071 POSTS0 COMMENTS
Thapelo Manthata
6756 POSTS0 COMMENTS
Umr Jansen
6762 POSTS0 COMMENTS