Skip to content

Instantly share code, notes, and snippets.

@davidalves1
Created May 3, 2018 11:57
Show Gist options
  • Save davidalves1/1784e1694417086de4584edd79980d0c to your computer and use it in GitHub Desktop.
Save davidalves1/1784e1694417086de4584edd79980d0c to your computer and use it in GitHub Desktop.
Calcula a diferença entre dois horários
<?php
$time1 = new Datetime('01:00:00');
$time2 = new Datetime('02:45:00');
$interval = $time1->diff($time2);
var_dump($interval->format('%H:%i:%s'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment