Home Answers Viewqa PHP How can we know the number of days between two given dates using PHP?

 
 


brijesh
How can we know the number of days between two given dates using PHP?
1 Answer(s)      2 years and 7 months ago
Posted in : PHP

How can we know the number of days between two given dates using PHP?

View Answers

November 13, 2010 at 3:21 PM


Hi,

The code to find the number of days is:

<?php

function numberofdays($startdate, $enddate) {

$start = strtotime($startdate);

$end = strtotime($enddate);

$difference = $end - $start;

return round($difference / 86400);

}

echo numberofdays("2006-04-05", "2006-04-01");

?>

Thanks









Related Pages: