How to make the shortest date validator for all formats?
I need to get data and format then return the true or false to check is the passed data have required date-format! for example var_dump(validateDateTime(‘Tue, 28 Feb 2012 12:12:12 +0200’, ‘D, d M Y H:i:s O’)); # the return value should be true I want to validate the date in all formats,by getting the date… Read More How to make the shortest date validator for all formats?