PHP date() 函数

发布于 2024-11-16 22:02:57 字数 275 浏览 1 评论 0原文

我在数据库更新时自动创建了一个时间戳,如下所示: 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 技术交流群。

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

发布评论

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

评论(1

少女的英雄梦 2024-11-23 22:02:57
$date_added = date('d/m/Y H:i:s', strtotime($date));

应该做到这一点。

$date_added = date('d/m/Y H:i:s', strtotime($date));

Should do the trick.

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