我在 preg_match 中使用了这种字符串格式:
[Day][MonthAbbr] [Date] [Hour]:[Minutes][AM/PM]
example:
ThuDec 27 2:00am
拥有这个 $pattern 和某种代码:
$pattern = "/([A-Z]{2}\w+)([A-Z]{2}\w+)\s+(\w+)\s+(\d+):(\d+)(..)/ims";
$match = array();
if (preg_match($pattern, rtrim($date), $match)) {
echo '<pre>';
print_r($match);
echo '</pre>';
} else {
echo 'Could not parse date.';
}
我能够从字符串中提取月份、日期、时间等......
但我想知道为什么我想出了“无法解析日期”这个问题。即使传递的值仍然相同..
我比较了值和有错误的值:
ThuDec 27 2:00am
ThuDec 27 4:30am (gives the error)
这是下面的屏幕截图以进行比较:
我在 preg_match 中使用的模式有问题吗?