PHP:使用preg_match的正则表达式

时间:2014-10-11 15:05:51

标签: php regex

我是php新手并学习正则表达式。我正在尝试使用preg_match将标准时间转换为军事时间。进入的数据格式为“1991年9月6日下午6:23”。在代码的其他地方,我已经使用正则表达式将数据分成具有“月”,“日”,“年”,“小时”和“分钟”元素的数组。我试图告诉程序查看数据,如果它以PM结尾12添加到“Hour”元素。这是我的代码:

    if (preg_match("/[A-Za-z0-9,:\s]*[PM]/", $original_data)) {
        $broken_data[$j][3]= $broken_data[$j][3] + 12;
    }

其中$ original_data是格式为“1991年9月6日下午6:23”的字符串,$ broken_data是上述数组。我认为preg_match正在做什么(并打算让它做)如果有任何数量的A-Z,a-z,0-9,:,逗号或空格后跟PM,则返回true。这怎么回事?

提前谢谢!

1 个答案:

答案 0 :(得分:0)

你可以完全跳过preg_match并使用strtotime()和str_replace()

但是,当你有" at"在字符串中,这就是为什么我们使用str_replace来摆脱它。

// converts to "September 6, 1991 6:23PM"
$time = str_replace(" at ", " ", "September 6, 1991 at 6:23PM"); 
// You will need to change this to the format you want outputted
echo date("M d, Y H:i" , strtotime($time));