“PHP -Validierungsdatumformat” Code-Antworten

PHP -Validierungsdatumformat

$date="2012-09-12";

if (preg_match("/^(20[0-9]{2})-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/",$date)) {
    return true;
} else {
    return false;
}
Bahriddin Mo'minov

PHP prüfen gültiges Zeitformat

function isValidDate(string $date, string $format = 'Y-m-d'): bool
{
    $dateObj = DateTime::createFromFormat($format, $date);
    return $dateObj && $dateObj->format($format) == $date;
}
Indian Gooner

Ähnliche Antworten wie “PHP -Validierungsdatumformat”

Fragen ähnlich wie “PHP -Validierungsdatumformat”

Weitere verwandte Antworten zu “PHP -Validierungsdatumformat” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen