PHP 言語にはさまざまな種類の関数があり、さまざまな適用方法やさまざまな関数があります。初心者の方の学習の参考になれば幸いです!
1. PHP タイムスタンプ関数は、指定された日付 strtotime("2009-1-22") の UNIX タイムスタンプを取得します。 例は次のとおりです。 echo strtotime(”2009-1-22″) 結果: 1232553600
説明: 2009 年 1 月 22 日の 0:00:00 のタイムスタンプを返します2 番目に、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) 来週のこの時間のタイムスタンプを出力します strtotime(”+1week”)
現在の時刻: 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(”-1週間”)
現在の時刻: 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 year")) 結果: 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("last 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("last Wednesday")) 結果: 2009-01-15 00:00:00
(7) 前日0時のタイムスタンプを出力します
$ystd = strtotime('-1 day') // 昨日の瞬間のタイムスタンプ;
$ystd = date("Y-m-d", $ystd) // 昨日の日付 d
;
$ystd = strtotime($ystd." 00:00:00"); // 昨日の朝 24:00 のタイムスタンプ
上記のすべての PHP タイムスタンプ形式 (時刻の取得、タイムスタンプ) の概要は、編集者が共有したすべての内容です。参考にしていただければ幸いです。皆さんも Bangkejia をサポートしていただければ幸いです。
http://www.bkjia.com/PHPjc/1136656.htmlwww.bkjia.com
本当