Feb 26, 2014

Hàm Kiểm tra ngày tháng có đúng không trong php.

function isValidDateTimeString($str_dt, $str_dateformat, $str_timezone) {
  $date = DateTime::createFromFormat($str_dateformat, $str_dt, new DateTimeZone($str_timezone));
  return $date && DateTime::getLastErrors()["warning_count"] == 0 && DateTime::getLastErrors()["error_count"] == 0;
}