Regular Expression to validate Date Time format
Posted by admin
This is a simple Regular Expression to validate if the string is a valid Date Time format.
$string = "0000-00-00 00:00:00";
$reg_exp = "/[0-9]{4}-[0-9]{2}-[0-9]{2}\s[0-9]{2}:[0-9]{2}:[0-9]{2}/";
if(preg_match($reg_exp, $string) == TRUE){
echo "Valid Date Time Format.";
} else {
echo "Not valid Date Time Format.";
}
Back to List | Comments (0) | October 03, 2009 at 03:23 pm
Leave a Reply
Latest News (2)
iWebProvider.com No 1 at Yahoo search engine for the keyword -filipino web developer.
Posted on October 02, 2009
On Sept 6, 2009 iWebProvider.com is No. 1 at Yahoo and Google for keyword "filipino web developer".
continue reading
Launching of the updated iWebProvider.com
Posted on October 02, 2009
Now as of July 7, 2009 the launching of iWebProvider.com with its improve feature and the used of its very own CMS. It now has features like Blogs, comments on News articles and the upcoming user registration.
continue reading
Wise Words
"It's not about how many you have learned but how much you have utilized and mastered what you have learned."
- by: Mark Lester

0 Responses
No Records Yet.