Different Between Two Date in PHP
<?php
// different between two date in php
function dateDiff($start, $end) { // create your function here
$date1 = strtotime($start);
$date2 = strtotime($end);
$diff = $date2 - $date1;
return round($diff / 86400);
}
echo dateDiff("05-03-2012", "13-03-2012").'days';
?>
Comments
Post a Comment
If you Satisfied , Please Leave a comment