Home  >  Article  >  Backend Development  >  javascript - php如何把时间戳按照全天24小时一个小时,一个小时的显示

javascript - php如何把时间戳按照全天24小时一个小时,一个小时的显示

WBOY
WBOYOriginal
2016-06-06 20:15:061052browse

数据我们已经有了,但是如何把这批数据按照全天24小时制,每一个小时一个小时的格式展示出来呢?
比如说:0点-1点:5

<code>   1点-2点:0
   2点=3点:6
   这个样子去展示。。。
   </code>

回复内容:

数据我们已经有了,但是如何把这批数据按照全天24小时制,每一个小时一个小时的格式展示出来呢?
比如说:0点-1点:5

<code>   1点-2点:0
   2点=3点:6
   这个样子去展示。。。
   </code>

亲,你自己读一下,你觉得别人能看懂吗。
自己查mysql的手册吧,只要使用时间格式化函数就行了,我懒得去找了。
打比方说 formatTime('Y-m-d h', '2006-11-23 18:00:05')能得到结果 2006-11-23 18的话
select *, formatTime('h', time) as h from yourTable where formatTime('Y-m-d', time) = '2016-02-30' order by h

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn