Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to calculate the different between two dates in days with PHP

3 Answers

0 votes
$date1 = new DateTime('2016-06-10');
$date2 = new DateTime('2016-06-13');

$interval = $date1->diff($date2);

echo $interval->format('%R%a days');


 
/*
run: 

+3 days  

*/

 





answered Jun 13, 2016 by avibootz
edited Dec 11, 2023 by avibootz
0 votes
$datetime1 = date_create('2016-06-10');
$datetime2 = date_create('2016-06-13');

$interval = date_diff($datetime1, $datetime2);

echo $interval->format('%R%a days');


 
/*
run: 

+3 days  

*/

 





answered Jun 13, 2016 by avibootz
edited Dec 11, 2023 by avibootz
0 votes
$now = time(); 
$adate = strtotime("2019-01-01");

echo round(($now - $adate) / (60 * 60 * 24));


 
/*
run:
      
69
     
*/

 





answered Mar 11, 2019 by avibootz
edited Dec 11, 2023 by avibootz
...