How to validate a date without having to put together regular expressions in PHP

When validating dates in PHP you can either do it the hard way, by spending some time putting together a regular expression, or the easy way, by using a predefined function.

 

Share this Listing