从数据库打印日期

发布于 2024-12-02 09:27:46 字数 163 浏览 0 评论 0原文

当我从数据库中提取日期时,它会像这样返回:

1314718511 
1314212730
1314210433
1314210352

我想要这样:-

08/31/11 14:43:29 IST

When I pull the date out of the db, it comes back like this:

1314718511 
1314212730
1314210433
1314210352

I want like this:-

08/31/11 14:43:29 IST

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

倾其所爱 2024-12-09 09:27:46

使用 date() (http://php.net/manual /en/function.date.php),或 DateTime 类(http://php.net/manual/en/class.datetime.php)当您想要进行转换(例如时区)时。

Use date() (http://php.net/manual/en/function.date.php), or the DateTime class (http://php.net/manual/en/class.datetime.php) when you want to do transformations (like time zones).

寄人书 2024-12-09 09:27:46

如果您的数据库是 MySQL,请查看 from_unixtime
unix_timestamp 函数。您将看到您可以在 SQL 级别或如 Rijk 指出的那样在 PHP 中执行此转换。

If your database is MySQL also check out the from_unixtime
and unix_timestamp functions. You'll see you can do this conversion either at SQL level or as Rijk pointed out, in PHP.

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