Home > Article > Backend Development > How to Calculate the Difference Between Two Dates in Days Using PHP?
Calculating Day-Based Date Difference in PHP
Introduction:
Determining the difference between two dates, particularly for a duration in days, can be a common task in programming. In PHP, this calculation can be performed efficiently using the built-in function date_diff.
Question:
How can we quickly calculate the difference between two dates in PHP, representing the interval between them in days?
Answer:
To calculate the day-based difference between two dates in PHP, follow these steps:
<code class="php">$date1Object = DateTime::createFromFormat('Y-m-d H:i:s', $date1); $date2Object = DateTime::createFromFormat('Y-m-d H:i:s', $date2);</code>
<code class="php">$dateDiff = $date1Object->diff($date2Object);</code>
<code class="php">$dayCount = $dateDiff->days;</code>
Example:
Using the provided dates:
<code class="php">$date1 = '2009-11-12 12:09:08'; $date2 = '2009-12-01 08:20:11';</code>
The resulting day count would be:
<code class="php">$dayCount = 19;</code>
The above is the detailed content of How to Calculate the Difference Between Two Dates in Days Using PHP?. For more information, please follow other related articles on the PHP Chinese website!