PHP日期格式问题
有些人帮助了我 如何检查 PHP 中的数据格式 发布,但我需要检查两种日期格式 MM-DD-YYYY 和 DD-MM-YY 而不是一种。我需要设置两个正则表达式吗???感谢您的帮助!
$date1=05/25/2010;
$date2=25/05/10; //I wish both of them would pass
$date_regex = '!^(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d$!';
if (preg_match($date_regex, $date1)) {
do something
}
if (preg_match($date_regex, $date2)) { // need second Reg. expression??
do something
}
Some folks helped me on
How to check the data format in PHP
post but I need to check two date formats MM-DD-YYYY and DD-MM-YY instead of one. Do I need to setup two regular expression???? Thanks for the help!!!
$date1=05/25/2010;
$date2=25/05/10; //I wish both of them would pass
$date_regex = '!^(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d$!';
if (preg_match($date_regex, $date1)) {
do something
}
if (preg_match($date_regex, $date2)) { // need second Reg. expression??
do something
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的正则表达式
与 MM-DD-YYYY 格式匹配。
您想要匹配的另一个很简单,
您只需检查其中一个是否为真即可。
或者您可以使用
不是最优雅的正则表达式来组合它们,但它应该可以正常工作。
Your regex
matches MM-DD-YYYY format.
The other you want to match is simple
You could just check if either is true.
Or you could combine them using
Not the most elegant regex but it shold work just fine.