function isRealDate($date) { if (false === strtotime($date)) { return false; } list($year, $month, $day) = explode('-', $date); return checkdate($month, $day, $year); }