經常會有人被strtotime結合-1 month, +1 month, next month的時候搞得很困惑, 然後就會覺得這個函式有點不那麼靠譜, 動不動就出問題. 用的時候就會很慌…
這不, 剛剛就有人在微博上又問我:
今天是2018-07-31 執行**:
date("y-m-d",strtotime("-1 month"))
怎麼輸出是2018-07-01?
好的吧, 雖然這個問題看起來很迷惑, 但從內部邏輯上來說呢, 其實是」對」的, 你先別著急哈, 讓我慢慢講:
我們來模擬下date內部的對於這種事情的處理邏輯:
是不是邏輯很」清晰」呢? 我們也可以手動驗證第二個步驟, 比如:
var_dump(date("y-m-d", strtotime("2017-06-31")));
//輸出2017-07-01
也就是說, 只要涉及到大小月的最後一天, 都可能會有這個迷惑, 我們也可以很輕鬆的驗證類似的其他月份, 印證這個結論:
var_dump(date("y-m-d", strtotime("-1 month", strtotime("2017-03-31"))));
//輸出2017-03-03
var_dump(date("y-m-d", strtotime("+1 month", strtotime("2017-08-31"))));
//輸出2017-10-01
var_dump(date("y-m-d", strtotime("next month", strtotime("2017-01-31"))));
//輸出2017-03-03
var_dump(date("y-m-d", strtotime("last month", strtotime("2017-03-31"))));
//輸出2017-03-03
那怎麼辦呢?
從php5.3開始呢, date新增了一系列修正短語, 來明確這個問題, 那就是」first day of」 和 「last day of」, 也就是你可以限定好不要讓date自動」規範化」:
var_dump(date("y-m-d", strtotime("last day of -1 month", strtotime("2017-03-31"))));
//輸出2017-02-28
var_dump(date("y-m-d", strtotime("first day of +1 month", strtotime("2017-08-31"))));
輸出2017-09-01
var_dump(date("y-m-d", strtotime("first day of next month", strtotime("2017-01-31"))));
輸出2017-02-01
var_dump(date("y-m-d", strtotime("last day of last month", strtotime("2017-03-31"))));
輸出2017-02-28
那如果是5.3之前的版本(還有人用麼?), 你可以使用mktime之類的, 把所有的日子忽略掉, 比如都限定為每月1號就可以了, 只不過就不如直接用first day來的更加優雅.
現在, 搞清楚了內部原理, 是不是就不慌了? ��
令人困惑的strtotime
經常會有人被strtotime結合 1 month,1 month,next month的時候搞得很困惑,然後就會覺得這個函式有點不那麼靠譜,動不動就出問題.用的時候就會很慌 這不,剛剛就有人在微博上又問我 鳥哥,今天是2018 07 31 執行 date y m d strtotime 1 mon...
令人困惑的C 語法
include include for size t using namespace std arr 13 run error in vs.net template struct myhash stl template null struct myhash stl template null str...
令人困惑的webpack之entry
使用webpack快一年了,現在1.x版本都過氣了,但是感覺自己對它那複雜的配置還是很不熟悉,各種路徑,各種loader,各種plugin,又是單頁面又是多頁面.在vue cli出來的時候,都不敢用他的webpack模板,主要就是因為webpack的配置檔案看不懂,不敢自己根據需要做修改。現在沉下心...