Skip to content

Instantly share code, notes, and snippets.

@cwlsn
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwlsn/0ff8e2fad737129d43cb to your computer and use it in GitHub Desktop.
Save cwlsn/0ff8e2fad737129d43cb to your computer and use it in GitHub Desktop.
<?php
function dateOrNaw($date) {
$date = date_parse($date);
return ($date["error_count"] == 0 && checkdate($date["month"], $date["day"], $date["year"])) ? true : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment