从数据库打印日期
当我从数据库中提取日期时,它会像这样返回:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
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 theDateTime
class (http://php.net/manual/en/class.datetime.php) when you want to do transformations (like time zones).如果您的数据库是 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.