這篇文章主要介紹了php求今天、昨天、明天時間戳的方法,實例分析了strtotime函數的常見使用技巧,非常簡單實用,需要的朋友可以參考下
具體如下:
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實作求今天、昨天、明天時間戳記的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!