Skip to content

Instantly share code, notes, and snippets.

@enko
Created July 7, 2015 12:17
Show Gist options
  • Save enko/97b7deb9a5d33dc27599 to your computer and use it in GitHub Desktop.
Save enko/97b7deb9a5d33dc27599 to your computer and use it in GitHub Desktop.
<?php
$int = new DateInterval('P27DT19H26M39S');
$now = new DateTime();
var_dump($now);
$now->add($int);
var_dump($now);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment