Created
September 2, 2017 05:36
-
-
Save gwagroves/7b659bc4b2abef945279d109f4e5399a to your computer and use it in GitHub Desktop.
Format date to be saved in Drupal.
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 | |
/** | |
* Format a date to be saved in Drupal. | |
* | |
* @param string $date | |
* | |
* @return string | |
*/ | |
private function formatDate($date) { | |
$date_time = \DateTime::createFromFormat('Y-m-d', $date); | |
return $date_time->format(DATETIME_DATE_STORAGE_FORMAT); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment