Created
April 21, 2019 16:02
A nice php one-liner to return a formated date of whatever today is, minus one week.
This file contains 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
$TodayMinusOneWeek = (new DateTime())->modify('-1 week')->format('Y-m-d'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment