fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $d1=new DateTime("2018-07-08");
  6. $d2=new DateTime("2018-10-08");
  7. $diff=$d2->diff($d1);
  8.  
  9. echo $diff->days;
Success #stdin #stdout 0.01s 23708KB
stdin
Standard input is empty
stdout
92