本文实例讲述了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
希望本文所述对大家PHP程序设计有所帮助。
新闻热点
疑难解答
图片精选