前端之家收集整理的这篇文章主要介绍了
使用PHP从时间戳减去6小时,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这段代码来显示数据库中的日期和时间.如何修改它以从时间戳中减去6小时.
date('m-d g:Ga',strtotime($row['time_stamp']))
@H_
403_10@最佳答案
UNIX时间戳是Epoch以来的秒数.只需减去六小时内的秒数:
date('m-d g:Ga',strtotime($row['time_stamp'])-21600)
你也可以再次使用strtotime:
date('m-d g:Ga',strtotime('-6 hours',strtotime($row['time_stamp'])))