Skip to content

Instantly share code, notes, and snippets.

@judbd
Created November 22, 2015 23:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save judbd/8b9a43130e7aea599854 to your computer and use it in GitHub Desktop.
Save judbd/8b9a43130e7aea599854 to your computer and use it in GitHub Desktop.
<?php
$from = date('Y-m-d', strtotime($from));
$to = date('Y-m-d', strtotime($to));
$from = new DateTime($from);
$to = new DateTime($to);
$interval = $from->diff($to);
return $interval->$format;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment