strtotime('now') | 2024/12/04 14:53:41 |
strtotime('+2 day') | 2024/12/06 14:53:41 |
strtotime('2 day') | 2024/12/06 14:53:41 |
strtotime('-2 day') | 2024/12/02 14:53:41 |
strtotime('2015/08/01') | 2015/08/01 00:00:00 |
strtotime('2039/08/01') | 2039/08/01 00:00:00 |
strtotime('yesterday') | 2024/12/03 00:00:00 |
strtotime('tomorrow') | 2024/12/05 00:00:00 |
strtotime('yesterday 09:00:00') | 2024/12/03 09:00:00 |
strtotime('+3 week') | 2024/12/25 14:53:41 |
strtotime('-3 week') | 2024/11/13 14:53:41 |
strtotime('next sunday') | 2024/12/08 00:00:00 |
strtotime('next sun') | 2024/12/08 00:00:00 |
strtotime('last sunday') | 2024/12/01 00:00:00 |
strtotime('+4 sunday') | 2024/12/29 14:53:41 |
strtotime('first sun of 2015-08') | 2015/08/02 00:00:00 |
strtotime('last sun of 2015-08') | 2015/08/30 00:00:00 |
strtotime('last sun of 2039-08') | 2039/08/28 00:00:00 |
strtotime('+2 month') | 2025/02/04 14:53:41 |
strtotime('-2 month') | 2024/10/04 14:53:41 |
strtotime('2015/08/01 +1 month') | 2015/09/01 00:00:00 |
strtotime('+1 month', strtotime('2015/08/01')) | 2015/09/01 00:00:00 |
strtotime('2015/08/31 +1 month') | 2015/10/01 00:00:00 |
strtotime('2015-08 +1 month') | 2015/09/01 00:00:00 |
strtotime('2039-08 +1 month') | 2039/09/01 00:00:00 |
strtotime('first day of 2015/08/12') | 2015/08/01 00:00:00 |
strtotime('first day of', strtotime('2015/08/12')) | 2015/08/01 00:00:00 |
strtotime('last day of 2015/08/12') | 2015/08/31 00:00:00 |
strtotime('last day of next month') | 2025/01/31 14:53:41 |
strtotime('+1 year') | 2025/12/04 14:53:41 |
strtotime('-1 year') | 2023/12/04 14:53:41 |
strtotime('-1 year 13:23:33') | 2023/12/04 13:23:33 |
strtotime('2015/01/01 -1 year') | 2014/01/01 00:00:00 |
strtotime('-1 year', strtotime('2015/01/01')) | 2014/01/01 00:00:00 |
strtotime('+2 hour') | 2024/12/04 16:53:41 |
strtotime('+4 min') | 2024/12/04 14:57:41 |
strtotime('+6 sec') | 2024/12/04 14:53:47 |
strtotime('now') - strtotime('today')...今日の 0時からの秒数 | 53621 |
strtotime('now') - strtotime('today 10:00:00')...今日の10時からの秒数 | 17621 |