Answers for "check if string valid date time php"

PHP
1

check if date is past php

$date = new DateTime($event['date']);
$now = new DateTime();
if($date < $now) {
    echo 'Date is in the past';
}
Posted by: Guest on March-27-2021
0

php check valid time format

function isValidDate(string $date, string $format = 'Y-m-d'): bool
{
    $dateObj = DateTime::createFromFormat($format, $date);
    return $dateObj && $dateObj->format($format) == $date;
}
Posted by: Guest on August-07-2021

Code answers related to "check if string valid date time php"

Browse Popular Code Answers by Language