«

php求今天、昨天、明天时间戳的简单实现方法

时间:2024-3-1 11:30     作者:韩俊     分类: 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.maopiaopiao.com/code/unixtime

希望本文所述对大家PHP程序设计有所帮助。

标签: php php教程

热门推荐