Skip to content

Instantly share code, notes, and snippets.

@elvismdev
Created January 28, 2019 12:09
Show Gist options
  • Save elvismdev/e747e8e5e9c39b1d8aa13c74c978d8ea to your computer and use it in GitHub Desktop.
Save elvismdev/e747e8e5e9c39b1d8aa13c74c978d8ea to your computer and use it in GitHub Desktop.
Create valid date format from custom date string.
<?php
function correct_date_string( $str ) {
if ( $str ) {
$date = DateTime::createFromFormat('Y.m.d', $str);
return $date->format('m/d/Y');
} else {
return '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment