从字符串php获取日期 - 英国日期

时间:2010-04-22 17:51:43

标签: php date strtotime

我的英国日期格式为“06 / Apr / 2010 13:24”,我需要插入mysql db date字段。

PHP strtotime函数无法处理此字符串 - 除了编写自定义函数之外,有没有人有任何想法?

谢谢!

3 个答案:

答案 0 :(得分:4)

尝试替换/ - -

strtotime(str_replace('/', '-', '06/Apr/2010 13:24'));

答案 1 :(得分:0)

看起来你可以在空间上进行子串,然后在“/”上爆炸,然后能够让每个部分都能使用。似乎很奇怪,还没有办法做到这一点......

答案 2 :(得分:0)

怎么样

$date = strtotime(str_replace('/',' ',$date).":00");