-
-
/** - * 2 つの日付の間の年数、月数、週数、および日数を計算します
- * bbs.it-home.org を編集します
- */
- function format($a,$b){
- //2 つの日付のサイズを確認します。デフォルトは小さいです。前が大きく後ろが大きい場合、前が大きく後ろが小さい場合、前が小さく後ろが大きくなるように位置が交換されます
- if(strtotime($a)>strtotime($b) ) list($a,$b)=array($b,$a);
- $start = strtotime($a);
- $stop = strtotime($b);
- $extend = ($stop-$start) /86400;
- $result['extends'] = $extend;
- if($extend<7 ){ //7 日未満の場合は、日数を直接返します
- $result['daily'] = $ extend;
- }elseif($extend<=31){ //28 日未満の場合は、閏年の 2 月を満たすため、週数を返します
- if($stop==strtotime($a.' +1 か月')){
- $result['monthly'] = 1;
- }else{
- $w = Floor($extend/7);
- $d = ($stop-strtotime($a.'+' .$w.' 週'))/86400;
- $result['毎週'] = $w;
- $result['毎日'] = $d;
- }
- }else{
- $y= Floor($extend /365);
- if($y>=1){ //1 年以上の場合
- $start = strtotime($a.'+'.$y.' year');
- $a = date('Y-m -d',$start);
- //本当に 1 年が経過したかどうかを判断し、そうでない場合は減らします
- if($start>$stop){
- $a = date('Y-m-d',strtotime($ a.'-1 か月'));
- $m =11;
- $y--;
- }
- $extend = ($stop-strtotime($ a))/86400;
- }
- if(isset($m) )){
- $w = Floor($extend/7);
- $d = $extend-$w*7;
- }else{
- $m = isset($m)?$m:round($extend/30 );
- $stop>=strtotime($a.'+'.$m.'month')?$m:$m--;
- if( $stop>=strtotime($a.'+'.$m .'month')){
- $d=$w=($stop-strtotime($a.'+'.$m.'month')) /86400;
- $w = Floor($w/7);
- $d = $d-$w*7;
- }
- }
- $result['年'] = $y;
- $result['月次' ] = $m;
- $result['週次'] = $ w;
- $result['daily'] = isset($d)?$d:null;
- }
- return array_filter($result);
- }< ;/p>
print_r(format('2012 -10-1','2012-12-15'));
- ?>
-
コードをコピー
出力結果:
Array([拡張]=>75[月次]=>2[週次]=>2)
2. PHP は、特定の日の週番号と、対応する週の開始日をクエリします。
-
- /**
- * @file
- * @バージョン 1.1
- */
- //特定の日付の週番号と、対応する週の開始時刻と終了時刻を取得します
- private function getWeekStartEndDay($day)
- {
- $g = strftime("%u",strtotime($day));
- return array('week_num'=>strftime("%V",strtotime($day)),'week_start_day'=>strftime( '%Y- %m-%d',strtotime($day)-($g-1)*86400),'week_start_day_cn'=>strftime('%Y 年 %m 月 %d 日',strtotime($ day)-( $g-1)*86400),'week_end_day'=>strftime('%Y-%m-%d',strtotime($day) + (7-$g)*86400),'week_end_day_cn '=> strftime('%Y 年 %m 月 %d 日',strtotime($day) + (7-$g)*86400));
- }
- ?>
コードをコピー
|