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

发布于 2024-08-29 17:27:41 字数 130 浏览 3 评论 0原文

我有一个格式为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烙印 2024-09-05 17:27:41

尝试将 / 替换为 -

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

Try replacing / with -

strtotime(str_replace('/', '-', '06/Apr/2010 13:24'));
若相惜即相离 2024-09-05 17:27:41

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

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...

一影成城 2024-09-05 17:27:41

怎么样

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

How about

$date = strtotime(str_replace('/',' ',$date).":00");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文