Skip to content

Instantly share code, notes, and snippets.

@rafael-neri
Last active May 12, 2021 00:34
Show Gist options
  • Save rafael-neri/87fb25ab0dfec13703604095f8517822 to your computer and use it in GitHub Desktop.
Save rafael-neri/87fb25ab0dfec13703604095f8517822 to your computer and use it in GitHub Desktop.
Check if date is valid from format specified
<?php
function checkFormatDateTime(string $datetime, string $format): bool
{
$d = \DateTime::createFromFormat($format, $datetime);
return $d !== false ? $d->format($format) == $datetime : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment