Q:

PHP code to get number of days between two dates

belongs to collection: PHP Basic Programs

0

In this code example we are taking two dates and getting their differences, following code can be used to get exact date difference in days between two dates.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Source Code and Output to get number of days between two dates

<?php
$date1 = "2016-07-31";
$date2 = "2016-08-05";

function dateDiff($date1, $date2)
{
    $date1_ts = strtotime($date1);
    $date2_ts = strtotime($date2);
    $diff = $date2_ts - $date1_ts;
    return round($diff / 86400);
}

$dateDiff = dateDiff($date1, $date2);

printf("Difference between in two dates : " . $dateDiff . " Days ");
print "</br>";
?>

Output

Difference between in two dates : 5 Days 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP program to check whether given number is palin... >>
<< PHP code to get time difference...