从字符串 php 获取日期 - 英国日期
我有一个格式为“06/4/2010 13:24”的英国日期,我需要将其插入到 mysql 数据库日期字段中。
PHP strtotime 函数无法处理这个字符串——除了编写自定义函数之外,还有其他想法吗?
谢谢!
I have a UK date in the format "06/Apr/2010 13:24" that I need to insert into a mysql db date field.
The PHP strtotime function can't handle this string-- has anyone got any ideas other than writing a custom function?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试将 / 替换为 -
Try replacing / with -
看起来你可以在空间上进行子串,然后在“/”上展开,然后能够让每个部分都可以使用。似乎很奇怪,还没有办法做到这一点......
It looks like you could substring on the space then explode on the "/"'s and then be able to get each piece to work with. Seems odd that there isn't already a way to do this...
怎么样
How about