PHP Find Days Between Two Date

📔 : PHP 🔗
Copy Fullscreen Close Fullscreen
<?php
  /*define a function.
  * @param1 $date2
  * @param2 $date2
  * return boolean (true/false)
  */
  function get_days($date1, $date2) 
  {
    $diff = strtotime($date2) - strtotime($date1);
    /*we knew that one day have 86400 seconds*/
    return abs(round($diff / 86400));
  }

  $date1 = "25-09-2021";
  $date2 = "31-01-2021";
  $days = get_days($date1, $date2);
  printf("Difference between two dates: ". $days . " Days ");
?>
				
Output
Difference between two dates: 237 Days

Related Topics :

Rahul Kumar

Rahul Kumar

Hi ! My name is Rahul Kumar Rajput. I'm a back end web developer and founder of learnhindituts.com. I live in Uttar Pradesh (UP), India and I love to talk about programming as well as writing technical tutorials and tips that can help to others.

Get connected with me. :) LinkedIn Twitter Instagram Facebook