本文实例讲述了php求今天、昨天、明天时间戳的简单实现方法。分享给大家供大家参考,具
本文实例讲述了php求今天、昨天、明天时间戳的简单实现方法。分享给大家供大家参考,具体如下:
echo strtotime('now'),'<br>';//现在
echo strtotime('today'),'<br>';//今天
echo strtotime('tomorrow'),'<br>';//明天
echo strtotime('yesterday'),'<br>';//昨天
运行结果如下:
1469674869 1469664000 1469750400 1469577600
今天剩余的秒数:
echo $time_remain = strtotime('tomorrow') - time();
//输出:75531
PS:本站还提供了一个Unix时间戳转换工具,非常实用,提供给大家参考:
Unix时间戳(timestamp)转换工具: http://tools.jb51.net/code/unixtime
php 今天 昨天 明天 时间戳