ホームページ >バックエンド開発 >PHPチュートリアル >2 つの日付の間の年数、月数、週数、および日数を計算する PHP コードの例

2 つの日付の間の年数、月数、週数、および日数を計算する PHP コードの例

WBOY
WBOYオリジナル
2016-07-25 08:58:511431ブラウズ
  1. /**

  2. * 2 つの日付の間の年数、月数、週数、および日数を計算します
  3. * bbs.it-home.org を編集します
  4. */
  5. function format($a,$b){
  6. //2 つの日付のサイズを確認します。デフォルトは小さいです。前が大きく後ろが大きい場合、前が大きく後ろが小さい場合、前が小さく後ろが大きくなるように位置が交換されます
  7. if(strtotime($a)>strtotime($b) ) list($a,$b)=array($b,$a);
  8. $start = strtotime($a);
  9. $stop = strtotime($b);
  10. $extend = ($stop-$start) /86400;
  11. $result['extends'] = $extend;
  12. if($extend<7 ){ //7 日未満の場合は、日数を直接返します
  13. $result['daily'] = $ extend;
  14. }elseif($extend<=31){ //28 日未満の場合は、閏年の 2 月を満たすため、週数を返します
  15. if($stop==strtotime($a.' +1 か月')){
  16. $result['monthly'] = 1;
  17. }else{
  18. $w = Floor($extend/7);
  19. $d = ($stop-strtotime($a.'+' .$w.' 週'))/86400;
  20. $result['毎週'] = $w;
  21. $result['毎日'] = $d;
  22. }
  23. }else{
  24. $y= Floor($extend /365);
  25. if($y>=1){ //1 年以上の場合
  26. $start = strtotime($a.'+'.$y.' year');
  27. $a = date('Y-m -d',$start);
  28. //本当に 1 年が経過したかどうかを判断し、そうでない場合は減らします
  29. if($start>$stop){
  30. $a = date('Y-m-d',strtotime($ a.'-1 か月'));
  31. $m =11;
  32. $y--;
  33. }
  34. $extend = ($stop-strtotime($ a))/86400;
  35. }
  36. if(isset($m) )){
  37. $w = Floor($extend/7);
  38. $d = $extend-$w*7;
  39. }else{
  40. $m = isset($m)?$m:round($extend/30 );
  41. $stop>=strtotime($a.'+'.$m.'month')?$m:$m--;
  42. if( $stop>=strtotime($a.'+'.$m .'month')){
  43. $d=$w=($stop-strtotime($a.'+'.$m.'month')) /86400;
  44. $w = Floor($w/7);
  45. $d = $d-$w*7;
  46. }
  47. }
  48. $result['年'] = $y;
  49. $result['月次' ] = $m;
  50. $result['週次'] = $ w;
  51. $result['daily'] = isset($d)?$d:null;
  52. }
  53. return array_filter($result);
  54. }< ;/p>
  55. print_r(format('2012 -10-1','2012-12-15'));

  56. ?>

コードをコピー

出力結果: Array([拡張]=>75[月次]=>2[週次]=>2)

2. PHP は、特定の日の週番号と、対応する週の開始日をクエリします。

  1. /**
  2. * @file
  3. * @バージョン 1.1
  4. */
  5. //特定の日付の週番号と、対応する週の開始時刻と終了時刻を取得します
  6. private function getWeekStartEndDay($day)
  7. {
  8. $g = strftime("%u",strtotime($day));
  9. 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));
  10. }
  11. ?>
コードをコピー


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。