functions.php 243 B

1234567891011
  1. <?php
  2. /**
  3. * Here is your custom functions.
  4. */
  5. // 验证日期格式是否有问题
  6. function isValidDate($date, $format = 'Y-m-d'): bool
  7. {
  8. $d = DateTime::createFromFormat($format, $date);
  9. return $d && $d->format($format) === $date;
  10. }