Thursday, 3 July 2014

PHP DateTime Validation

  if (DateTime_Validation($text, $format = 'YmdHi') == 1) {       
        return 1; // False
    }
    return 0; // True

function DateTime_Validation($date, $format = 'YmdHi') {
    $d = DateTime::createFromFormat($format, $date);
    $return_type = $d && $d->format($format) == $date;
    if ($return_type == 1) {
        return 0;
    } else {
        return 1;
    }
}

No comments:

Post a Comment