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

Popular posts from this blog

Call PHP Function In JavaScript Using Ajax

List of Post Category Wise in wordpress