Created
July 4, 2022 19:47
-
-
Save shadyueh/93f8ae40ea568defb5c1042d740be135 to your computer and use it in GitHub Desktop.
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
<?php | |
$date = new DateTime('now'); | |
$date->modify('first day of this month'); | |
echo $date->format('Y-m-d'); | |
$date->modify('last day of this month'); | |
echo $date->format('Y-m-d'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment