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

时间:2022-11-04 00:15:03

本文实例讲述了php求今天、昨天、明天时间戳的简单实现方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
echo strtotime('now'),'<br>';//现在
echo strtotime('today'),'<br>';//今天
echo strtotime('tomorrow'),'<br>';//明天
echo strtotime('yesterday'),'<br>';//昨天

运行结果如下:

1469674869
1469664000
1469750400
1469577600

今天剩余的秒数:

?
1
2
echo $time_remain = strtotime('tomorrow') - time();
//输出:75531

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