Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
什么是用于preg_match函数的简单时间格式正则表达式 我尝试找到一个时间格式精确的正则表达式:2012/05/23-23:56
preg_match
2012/05/23-23:56
最简单的方法是
\d{4}/\d{2}/\d{2}-\d{2}:\d{2}
但这只是一个粗略的句法匹配。您可能仍想确保它实际上是日期和时间。您可以使用DateTime::createFromFormat如下格式字符串(未经测试):
DateTime::createFromFormat
%Y/%m/%d-%G-%i