“Sprawdź datę php” Kod odpowiedzi

PHP Sprawdź, czy wejście jest datą

function isRealDate($date) { 
    if (false === strtotime($date)) { 
        return false;
    } 
    list($year, $month, $day) = explode('-', $date); 
    return checkdate($month, $day, $year);
}
Wild Weevil

Sprawdź, czy data minęła PHP

$date = new DateTime($event['date']);
$now = new DateTime();
if($date < $now) {
    echo 'Date is in the past';
}
VasteMonde

Sprawdź datę php

function validateDate($date, $format = 'Y-m-d')
{
    $d = DateTime::createFromFormat($format, $date);
    // The Y ( 4 digits year ) returns TRUE for any integer with any number of digits so changing the comparison from == to === fixes the issue.
    return $d && $d->format($format) === $date;
}
Crazy Crossbill

Odpowiedzi podobne do “Sprawdź datę php”

Pytania podobne do “Sprawdź datę php”

Więcej pokrewnych odpowiedzi na “Sprawdź datę php” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu