Created
December 12, 2018 12:23
-
-
Save zecho/f6ca7245c6cd81ab11d2fff55166bb86 to your computer and use it in GitHub Desktop.
Convert DateInterval in seconds to split
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$d1 = new \DateTime(); | |
$d2 = (clone $d1)->add($interval); | |
$interval = $d2->diff($d1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment