fork download
  1. <?php
  2.  
  3. $date_reservation = strtotime('2016-05-20Z13:30'); // the 'Z' makes it UTC time zone
  4. $date_annulation = strtotime('now');
  5. $diff_minutes = round(abs($date_annulation - $date_reservation)/60, 0);
  6.  
  7. echo $diff_minutes;
Success #stdin #stdout 0.03s 52432KB
stdin
Standard input is empty
stdout
1066