PHP date() 函数
我在数据库更新时自动创建了一个时间戳,如下所示: y/m/dh:i:s ..
当我想回显它时,它就像:Y/m/dh:i:s,我希望它是:d/m/YH:i:s ..
但是如果我使用这个:
$date = $row['created_timestamp'];
$date_added = date('d/m/Y', H:i:s);
它会正确打印日期,但时间是当前时间。如何将其更改为数据库中存储的时间?
谢谢 :-)
I'm having an auto created timestamp on update from the database that looks like this:
y/m/d h:i:s..
And when I want to echo it it's like: Y/m/d h:i:s, and what I would like it to be is: d/m/Y H:i:s..
But if I use this:
$date = $row['created_timestamp'];
$date_added = date('d/m/Y', H:i:s);
It'll print the date right, but the time is the current time. How do I change this to be the stored time from my database?
Thanks :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该做到这一点。
Should do the trick.