PHP實現擷取各個時間段具體時間的方法

來源:互聯網
上載者:User
這篇文章主要介紹了PHP編程擷取各個時間段具體時間的方法,結合執行個體形式分析了基於date與strtotime函數進行日期時間運算的相關操作技巧,需要的朋友可以參考下

具體如下:

<?phpecho "今天:".date("Y-m-d")."<br>";echo "昨天:".date("Y-m-d",strtotime("-1 day")), "<br>";echo "明天:".date("Y-m-d",strtotime("+1 day")). "<br>";echo "一周后:".date("Y-m-d",strtotime("+1 week")). "<br>";echo "一周零兩天四小時兩秒後:".date("Y-m-d G:H:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "<br>";echo "下個星期四:".date("Y-m-d",strtotime("next Thursday")). "<br>";echo "上個周一:".date("Y-m-d",strtotime("last Monday"))."<br>";echo "一個月前:".date("Y-m-d",strtotime("last month"))."<br>";echo "一個月後:".date("Y-m-d",strtotime("+1 month"))."<br>";echo "十年後:".date("Y-m-d",strtotime("+10 year"))."<br>";/*strtotime()函數的作用是將日期時間描述解析為 Unix 時間戳記int strtotime ( string time [, int now] )*/?>

運行結果如下:

今天:2017-05-26昨天:2017-05-25明天:2017-05-27一周后:2017-06-02一周零兩天四小時兩秒後:2017-06-04 6:06:39下個星期四:2017-06-01上個周一:2017-05-22一個月前:2017-04-26一個月後:2017-06-26十年後:2027-05-26

相關推薦:

PHP實現編程計算兩個時間段是否有交集的方法

PHP+MySQL對固定時間段內資料統計最佳化步驟詳解

PHP結合Redis來限制使用者或者IP某個時間段內訪問的次數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.