Friday, September 5, 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
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS