将检索到的日期提取为月和代码点火器中的一天
我有一个(日期时间)以这种格式存储在数据库中 2011-10-12 02:01:24
当检索此日期时,我想提取该日期,以便我可以显示没有其他日期值的日期或月份
I have a (date time) stored in database in this format 2011-10-12 02:01:24
when retrieve this date i want to extract that date so i can show the day or month without the other date value
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 日期 & MySQL 的时间函数 或 PHP 函数,例如 strtotime()。
例如,对于
strtotime()
:将输出:
月份是 10 月,天数是 12
You can use date & time functions of MySQL or PHP functions like strtotime().
For instance, with
strtotime()
:Will outputs:
The month is October and the day number is 12
我用这段代码解决了这个问题:
在我看来
I solve this with this code:
in my view