この記事では、時間関数の日付と、PHP でよく使用される時間の計算に関する関連知識を主に紹介します。非常に優れた参考値です。以下のエディターで見てみましょう
プロジェクトでは、今日、昨日、今週、今月、今四半期、今年、先週から先月、前四半期などのタイムスタンプを使用する必要がありました。最近の時間で十分なので、PHP の関連する時間の知識ポイントをまとめて学習する予定です
1. PHP マニュアルの日付関数を読んでください
よく使われる時間関数:
checkdate () 時刻が正しいかどうかを確認します
date_default_timezone_get()で現在のスクリプトで使用されているタイムゾーンを取得します
date_default_timezone_set()でスクリプトで使用されているタイムゾーンを設定します ini_set()で満たすか、設定ファイルを変更することもできます
date_sunrise() date_sunset()は、指定された日付と場所の日の出時刻と日の入り時刻を返します
date()は日付をフォーマットします、詳細は後述します
getdate()は日付と時刻に関する情報を取得します
gettimeofday ()は現在時刻に関する情報を取得します
idate()は現地時間の日付を整数にフォーマットしますが、パラメータとして1文字のみを受け入れます
Microtime()は現在のタイムスタンプを返し、秒数を返します
mktime()はタイムスタンプを取得します日付の
strtotime()は英語テキストの日付秒をタイムスタンプに解析します
2.重要な関数の詳細な説明
date()は日付をフォーマットします
string date( string $format [, int $timestamp] )
d その日月の、つまり数字です。これには、01,02 のように先頭にゼロが付きます
D 曜日、つまり、英語の曜日の略語、Mon to Sun
l (L小文字) 曜日、これは完全な英語形式です、日曜日から土曜日まで
N 曜日を表すのに数字を使用します、1は月曜日、7は日曜日です
S
W 年間の週 F Month、完全な英単語 m 月の数値形式、先頭に0を付けます Mt 指定された月が持つべき日数
L 閏年であるかどうかを検出し、閏年は1であり、月は0
Y Y Y 午前中または午後の値を小文字
A Capit al 午前または午後の値
g 12時間制、先頭なし 0
G 24時間制、先頭なし先頭に0
h 12時間時計、先頭に0
H 24時間時計、先頭に0が付いた分数
i 夏時間ですか? はい 1の場合、0机Tが使用されるタイムゾーンではありません。が見つかります
C 2017-05-08T 15:22:21+00:00 形式
U. ) 関数の詳細な説明
date との違いは、この関数はパラメータを 1 つだけ渡すことができることです。複数のパラメータを渡す
B
H
s 秒
t 数値
Y 年4桁の数値
Z 曜日
Z 秒単位のタイムゾーンオフセット
strtotime()関数つながり
使用例
strtotime ("now"); strtotime ("10 September 2017"); strtotime ("+1 day"); strtotime ("+1 week"); strtotime ("+1 week 2 days 4 hours 2 seconds"); strtotime ("next Thursday"); strtotime ("last Monday");
$times = []; function makeTime(){ //获取今日开始时间戳和结束时间戳 $beginToday=mktime(0,0,0,date('m'),date('d'),date('Y')); $endToday=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1; $times['today']['begin'] = $beginToday; $times['today']['end'] = $endToday; //获取昨日起始时间戳和结束时间戳 $beginYesterday=mktime(0,0,0,date('m'),date('d')-1,date('Y')); $endYesterday=mktime(0,0,0,date('m'),date('d'),date('Y'))-1; $times['yesterday']['begin'] = $beginYesterday; $times['yesterday']['end'] = $endYesterday; //获取上周起始时间戳和结束时间戳 $beginLastweek=mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y')); $endLastweek=mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y')); $times['lastWeek']['begin'] = $beginLastweek; $times['lastWeek']['end'] = $endLastweek; //获取本月起始时间戳和结束时间戳 $beginThismonth=mktime(0,0,0,date('m'),1,date('Y')); $endThismonth=mktime(23,59,59,date('m'),date('t'),date('Y')); $times['thisMonth']['begin'] = $beginThismonth; $times['thisMonth']['end'] = $endThismonth; //获取本周开始时间和结束时间,此例中开始时间为周一 $defaultDate = date('Y-m-d'); $first = 1; $w = date('w',strtotime($defaultDate)); $beginWeek = strtotime("$defaultDate-" . ($w?$w-$first:6) . 'days'); $endWeek = $beginWeek + 6*24*3600-1; $times['thisWeek']['begin'] = $beginWeek; $times['thisWeek']['end'] = $endWeek; //获取上月的起始时间戳和结束时间戳 $beginLastmonth=mktime(0,0,0,date('m')-1,1,date('Y')); $endLastmonth=mktime(23,59,59,date('m')-1,date('t'),date('Y')); $times['LastMonth']['begin'] = $beginLastmonth; $times['LastMonth']['end'] = $endLastmonth; //获取今年的起始时间和结束时间 $beginThisyear = mktime(0,0,0,1,1,date('Y')); $endThisyear = mktime(23,59,59,12,31,date('Y')); $times['thisYear']['begin'] = $beginThisyear; $times['thisYear']['end'] = $endThisyear; //获取上年的起始时间和结束时间 $beginLastyear = mktime(0,0,0,1,1,date('Y')-1); $endLastyear = mktime(23,59,59,12,31,date('Y')-1); $times['lastYear']['begin'] = $beginLastyear; $times['lastYear']['end'] = $endLastyear; //获取本季度开始时间和结束时间 $season = ceil((date('n'))/3);//当月是第几季度 $beginThisSeason = mktime(0, 0, 0,$season*3-3+1,1,date('Y')); $endThisSeason = mktime(23,59,59,$season*3,date('t',mktime(0, 0 , 0,$season*3,1,date("Y"))),date('Y')); $times['thisSeason']['begin'] = $beginThisSeason; $times['thisSeason']['end'] = $endThisSeason; //获取上季度的起始时间和结束时间 $beginLastSeason = mktime(0, 0, 0,($season-1)*3-3+1,1,date('Y')); $endLastSeason = mktime(23,59,59,($season-1)*3,date('t',mktime(0, 0 , 0,$season*3,1,date("Y"))),date('Y')); $times['lastSeason']['begin'] = $beginLastSeason; $times['lastSeason']['end'] = $endLastSeason; return $times; } $times = makeTime();
目前是我之前用到的时间戳,后期还会积累汇总,避免重复造轮子。
以上がPHP で時刻関数の日付と一般的に使用される時刻計算を図で詳しく説明します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。