PHPの時間処理について
(1) この時刻における明日のタイムスタンプを出力します strtotime("+1 day")
現在時刻: echo date("Y-m-d H:i:s",time()) 結果: 2009-01-22 09: 40 :25
時刻の指定: echo date("Y-m-d H:i:s",strtotime("+1 day")) 結果: 2009-01-23 09:40:25
(2 ) この時点で昨日のタイムスタンプを出力します strtotime("-1 day")
現在の時刻: echo date("Y-m-d H:i:s",time()) 結果: 2009-01-22 09:40: 25
時刻の指定: echo date("Y-m-d H:i:s",strtotime("-1 day")) 結果: 2009-01-21 09:40:25
(3) 印刷next この週の時刻のタイムスタンプ strtotime("+1 year")
現在の時刻: echo date("Y-m-d H:i:s",time()) 結果: 2009-01-22 09:40:25
時刻の指定: echo date("Y-m-d H:i:s",strtotime("+1week")) 結果: 2009-01-29 09:40:25
(4) 先週の内容を出力この時のタイムスタンプ strtotime("-1week")
現在時刻:echo date("Y-m-d H:i:s",time()) 結果:2009-01-22 09:40:25
を指定time: echo date("Y-m-d H:i:s",strtotime("-1 year")) Result: 2009-01-15 09:40:25
(5) 次の指定日を出力します。週タイムスタンプ strtotime("next Wednesday")
現在の時刻: echo date("Y-m-d H:i:s",time()) 結果: 2009-01-22 09:40:25
指定された時刻: echo date("Y-m-d H:i:s",strtotime("next Wednesday")) 結果: 2009-01-29 00:00:00
(6) 指定された日のタイムスタンプ strtotime を出力します。 week ("先週の木曜日")
現在の時刻: echo date("Y-m-d H:i:s",time()) 結果: 2009-01-22 09:40:25
指定された時刻: echo date( " Y-m-d H:i:s",strtotime("last Wednesday")) 結果: 2009-01-15 00:00:00
上記の例からわかるように、strtotime は日付と英語テキストの時刻記述を Unix タイムスタンプに変換するには、mktime() または date() 形式の日付と時刻を組み合わせて、指定されたタイムスタンプを取得し、必要な日付と時刻を取得します。
上記は、PHP strtotime 関数の具体的な概念です。