Skip to content

Instantly share code, notes, and snippets.

@imelgrat
Created February 15, 2019 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imelgrat/32cd4ac54ea9a05f3b8a04bf1909aa60 to your computer and use it in GitHub Desktop.
Save imelgrat/32cd4ac54ea9a05f3b8a04bf1909aa60 to your computer and use it in GitHub Desktop.
Date formatting: How to Detect and convert date formats in PHP
<?php
/**
* Convert date format.
*
* Use regular expressions to detect dates and convert the detected dates into a MySQL-compatible DATE format.
*
* @link https://imelgrat.me/php/date-formatting-detect-convert/
*/
function convert_date_format($old_date = '')
{
$old_date = trim($old_date);
if (preg_match('/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/', $old_date)) // MySQL-compatible YYYY-MM-DD format
{
$new_date = $old_date;
}
elseif (preg_match('/^(0[1-9]|[1-2][0-9]|3[0-1])-(0[1-9]|1[0-2])-[0-9]{4}$/', $old_date)) // DD-MM-YYYY format
{
$new_date = substr($old_date, 6, 4) . '-' . substr($old_date, 3, 2) . '-' . substr($old_date, 0, 2);
}
elseif (preg_match('/^(0[1-9]|[1-2][0-9]|3[0-1])-(0[1-9]|1[0-2])-[0-9]{2}$/', $old_date)) // DD-MM-YY format
{
$new_date = substr($old_date, 6, 4) . '-' . substr($old_date, 3, 2) . '-20' . substr($old_date, 0, 2);
}
else // Any other format. Set it as an empty date.
{
$new_date = '0000-00-00';
}
return $new_date;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment