Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created October 27, 2015 07:45
Show Gist options
  • Save andreasvirkus/7b7590c1eb44fd811bb7 to your computer and use it in GitHub Desktop.
Save andreasvirkus/7b7590c1eb44fd811bb7 to your computer and use it in GitHub Desktop.
<?php
function validateDate($date, $format = 'Y-m-d H:i:s')
{
$d = DateTime::createFromFormat($format, $date);
return $d && $d->format($format) == $date;
}
var_dump(validateDate('2012-02-28 12:12:12')); # true
var_dump(validateDate('2012-02-30 12:12:12')); # false
var_dump(validateDate('Tue, 28 Feb 2012 12:12:12 +0200', 'D, d M Y H:i:s O')); # true
var_dump(validateDate('Tue, 28 Feb 2012 12:12:12 +0200', DateTime::RSS)); # true
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment