-
-
Save maykonmeier/499eaef0fb0d16871f66 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 | |
/* Working with dates | |
* | |
* 1. Everytime work with an object of type DateTime | |
* 2. Just use String into views or frontend using a format type | |
* | |
*/ | |
$format = 'Y-m-d'; | |
$date = DateTime::createFromFormat($format, '2009-02-15'); | |
echo "Format: $format; " . $date->format('Y-m-d H:i:s') . "\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment