fork download
  1. <?php
  2. date_default_timezone_set('Europe/Lisbon'); // change to the desired timezone - http://p...content-available-to-author-only...p.net/manual/en/timezones.php
  3.  
  4. $startRaw = '2015-05-10 12-04-58';
  5. $start = DateTime::createFromFormat('Y-m-d H-i-s', $startRaw );
  6.  
  7. $endRaw = date("Y-m-d H-i-s");
  8. $end = DateTime::createFromFormat('Y-m-d H-i-s', $endRaw );
  9.  
  10. $diff = $start->diff($end);
  11.  
  12. echo 'Difference: ' . $diff->format('%H Hours, %d days') . "\n";
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
Difference: 08 Hours, 0 days