PHP strtotime问题
我正在将许多日期插入数据库。大多数都正常写入,这样我就可以使用strtotime
来获取像'1299XXXXXX'这样的时间。
但是,有些日期是这样写的:日/月/年时/分/秒
echo strtotime('12/03/2011 18:00:52'); //this will get 132293165220
因此,我无法将所有日期插入数据库中。如何解决问题?谢谢。
I'm inserting many dates into a database. Most of them write normally, so that I can use strtotime
to get the time like '1299XXXXXX'.
However, some dates, are written like this: day/month/year hour/minute/seconds
echo strtotime('12/03/2011 18:00:52'); //this will get 132293165220
Thus, I can not insert all of the date in my database. How to solve the problem? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
其中“m/d/Y”是您选择的格式:如果想要完整 -> 'm/d/YH:i:s',
如果只有日期部分 -> 'm/d/Y'
更多关于 https://www.php.net /manual/en/function.date.php
where 'm/d/Y' is format of your choose: if want full -> 'm/d/Y H:i:s',
if only date part -> 'm/d/Y'
more on https://www.php.net/manual/en/function.date.php
我环顾四周,找不到任何全面的信息,所以我决定编写自己的日期转换器。参数化得很好。
I looked around and could not get anything comprehensive so i decided to write my own date converter. Well parameterized.
您可以使用
date
函数提取日期:You can extract the date using the
date
function: