Created
June 10, 2020 21:46
-
-
Save galvao/0a459cbe4923edd016e5e6b83cab3ada to your computer and use it in GitHub Desktop.
Shows how many days are left to a date
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 | |
$now = new DateTime(); | |
$then = new DateTime($_SERVER['argv'][1]); | |
$interval = $now->diff($then); | |
echo $interval->format('%a'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment