<?php /** * Here is your custom functions. */ function isValidDate($date, $format = 'Y-m-d'): bool { $d = DateTime::createFromFormat($format, $date); return $d && $d->format($format) === $date; }