侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

php实现获取农历(阴历)、节日、节气的类与用法示例

php  /  管理员 发布于 7年前   312

本文实例讲述了php实现获取农历(阴历)、节日、节气的类与用法。分享给大家供大家参考,具体如下:

lunarInfo[$year-$this->MIN_YEAR];    if($year==$this->MIN_YEAR&&$month<=2&&$date<=9) return array(1891,'正月','初一','辛卯',1,1,'兔');    return $this->getLunarByBetween($year,$this->getDaysBetweenSolar($year,$month,$date,$yearData[1],$yearData[2]));  }  function convertSolarMonthToLunar($year,$month)  {    $yearData = $this->lunarInfo[$year-$this->MIN_YEAR];    if($year==$this->MIN_YEAR&&$month<=2&&$date<=9) return array(1891,'正月','初一','辛卯',1,1,'兔');    $month_days_ary = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);    $dd = $month_days_ary[$month];    if($this->isLeapYear($year) && $month == 2) $dd++;    $lunar_ary = array();    for ($i = 1; $i < $dd; $i++)    {      $array = $this->getLunarByBetween($year,$this->getDaysBetweenSolar($year, $month, $i, $yearData[1], $yearData[2]));      $array[] = $year . '-' . $month . '-' . $i;      $lunar_ary[$i] = $array;    }    return $lunar_ary;  }  /**  * 将阴历转换为阳历  * @param year 阴历-年  * @param month 阴历-月,闰月处理:例如如果当年闰五月,那么第二个五月就传六月,相当于阴历有13个月,只是有的时候第13个月的天数为0  * @param date 阴历-日  */  function convertLunarToSolar($year,$month,$date)  {    $yearData = $this->lunarInfo[$year-$this->MIN_YEAR];    $between = $this->getDaysBetweenLunar($year,$month,$date);    $res = mktime(0,0,0,$yearData[1],$yearData[2],$year);    $res = date('Y-m-d', $res+$between*24*60*60);    $day = explode('-', $res);    $year = $day[0];    $month= $day[1];    $day = $day[2];    return array($year, $month, $day);  }  /**  * 判断是否是闰年  * @param year  */  function isLeapYear($year)  {    return (($year%4==0 && $year%100 !=0) || ($year%400==0));  }  /**  * 获取干支纪年  * @param year  */  function getLunarYearName($year)  {    $sky = array('庚','辛','壬','癸','甲','乙','丙','丁','戊','己');    $earth = array('申','酉','戌','亥','子','丑','寅','卯','辰','巳','午','未');    $year = $year.'';    return $sky[$year{3}].$earth[$year%12];  }  /**  * 根据阴历年获取生肖  * @param year 阴历年  */  function getYearZodiac($year)  {    $zodiac = array('猴','鸡','狗','猪','鼠','牛','虎','兔','龙','蛇','马','羊');    return $zodiac[$year%12];  }  /**  * 获取阳历月份的天数  * @param year 阳历-年  * @param month 阳历-月  */  function getSolarMonthDays($year,$month)  {    $monthHash = array('1'=>31,'2'=>$this->isLeapYear($year)?29:28,'3'=>31,'4'=>30,'5'=>31,'6'=>30,'7'=>31,'8'=>31,'9'=>30,'10'=>31,'11'=>30,'12'=>31);    return $monthHash["$month"];  }  /**  * 获取阴历月份的天数  * @param year 阴历-年  * @param month 阴历-月,从一月开始  */  function getLunarMonthDays($year,$month)  {    $monthData = $this->getLunarMonths($year);    return $monthData[$month-1];  }  /**  * 获取阴历每月的天数的数组  * @param year  */  function getLunarMonths($year)  {    $yearData = $this->lunarInfo[$year - $this->MIN_YEAR];    $leapMonth = $yearData[0];    $bit = decbin($yearData[3]);    for ($i = 0; $i < strlen($bit);$i ++) $bitArray[$i] = substr($bit, $i, 1);    for($k=0,$klen=16-count($bitArray);$k<$klen;$k++) array_unshift($bitArray, '0');    $bitArray = array_slice($bitArray,0,($leapMonth==0?12:13));    for($i=0; $ilunarInfo[$year-$this->MIN_YEAR];    $monthArray = $this->getLunarYearMonths($year);    $len = count($monthArray);    return ($monthArray[$len-1]==0?$monthArray[$len-2]:$monthArray[$len-1]);  }  function getLunarYearMonths($year)  {    //debugger;    $monthData = $this->getLunarMonths($year);    $res=array();    $temp=0;    $yearData = $this->lunarInfo[$year-$this->MIN_YEAR];    $len = ($yearData[0]==0?12:13);    for($i=0;$i<$len;$i++)    {      $temp=0;      for($j=0;$j<=$i;$j++) $temp+=$monthData[$j];      array_push($res, $temp);    }    return $res;  }  /**  * 获取闰月  * @param year 阴历年份  */  function getLeapMonth($year)  {    $yearData = $this->lunarInfo[$year-$this->MIN_YEAR];    return $yearData[0];  }  /**  * 计算阴历日期与正月初一相隔的天数  * @param year  * @param month  * @param date  */  function getDaysBetweenLunar($year,$month,$date)  {    $yearMonth = $this->getLunarMonths($year);    $res=0;    for($i=1;$i<$month;$i++) $res +=$yearMonth[$i-1];    $res+=$date-1;    return $res;  }  /**  * 计算2个阳历日期之间的天数  * @param year 阳历年  * @param cmonth  * @param cdate  * @param dmonth 阴历正月对应的阳历月份  * @param ddate 阴历初一对应的阳历天数  */  function getDaysBetweenSolar($year,$cmonth,$cdate,$dmonth,$ddate)  {    $a = mktime(0,0,0,$cmonth,$cdate,$year);    $b = mktime(0,0,0,$dmonth,$ddate,$year);    return ceil(($a-$b)/24/3600);  }  /**  * 根据距离正月初一的天数计算阴历日期  * @param year 阳历年  * @param between 天数  */  function getLunarByBetween($year,$between)  {    //debugger;    $lunarArray = array();    $yearMonth=array();    $t=0;    $e=0;    $leapMonth=0;    $m='';    if($between==0)    {      array_push($lunarArray, $year,'正月','初一');      $t = 1;      $e = 1;    }    else    {      $year = $between>0? $year : ($year-1);      $yearMonth = $this->getLunarYearMonths($year);      $leapMonth = $this->getLeapMonth($year);      $between = $between>0?$between : ($this->getLunarYearDays($year)+$between);      for($i=0;$i<13;$i++)      {        if($between==$yearMonth[$i])        {          $t=$i+2;          $e=1;          break;        }else if($between<$yearMonth[$i])        {          $t=$i+1;          $e=$between-(empty($yearMonth[$i-1])?0:$yearMonth[$i-1])+1;          break;        }      }      $m = ($leapMonth!=0&&$t==$leapMonth+1)?('闰'.$this->getCapitalNum($t- 1,true)):$this->getCapitalNum(($leapMonth!=0&&$leapMonth+1<$t?($t-1):$t),true);      array_push($lunarArray,$year,$m,$this->getCapitalNum($e,false));    }    array_push($lunarArray,$this->getLunarYearName($year));// 天干地支    array_push($lunarArray,$t,$e);    array_push($lunarArray,$this->getYearZodiac($year));// 12生肖    array_push($lunarArray,$leapMonth);// 闰几月    return $lunarArray;  }  /**  * 获取数字的阴历叫法  * @param num 数字  * @param isMonth 是否是月份的数字  */  function getCapitalNum($num,$isMonth)  {    $isMonth = $isMonth || false;    $dateHash=array('0'=>'','1'=>'一','2'=>'二','3'=>'三','4'=>'四','5'=>'五','6'=>'六','7'=>'七','8'=>'八','9'=>'九','10'=>'十 ');    $monthHash=array('0'=>'','1'=>'正月','2'=>'二月','3'=>'三月','4'=>'四月','5'=>'五月','6'=>'六月','7'=>'七月','8'=>'八月','9'=>'九月','10'=>'十月','11'=>'冬月','12'=>'腊月');    $res='';    if($isMonth) $res = $monthHash[$num];    else    {      if($num<=10) $res = '初'.$dateHash[$num];      else if($num>10&&$num<20) $res = '十'.$dateHash[$num-10];      else if($num==20) $res = "二十";      else if($num>20&&$num<30) $res = "廿".$dateHash[$num-20];      else if($num==30) $res = "三十";    }    return $res;  }  /*   * 节气通用算法   */  function getJieQi($_year,$month,$day)  {    $year = substr($_year,-2)+0;    $coefficient = array(      array(5.4055,2019,-1),//小寒      array(20.12,2082,1),//大寒      array(3.87),//立春      array(18.74,2026,-1),//雨水      array(5.63),//惊蛰      array(20.646,2084,1),//春分      array(4.81),//清明      array(20.1),//谷雨      array(5.52,1911,1),//立夏      array(21.04,2008,1),//小满      array(5.678,1902,1),//芒种      array(21.37,1928,1),//夏至      array(7.108,2016,1),//小暑      array(22.83,1922,1),//大暑      array(7.5,2002,1),//立秋      array(23.13),//处暑      array(7.646,1927,1),//白露      array(23.042,1942,1),//秋分      array(8.318),//寒露      array(23.438,2089,1),//霜降      array(7.438,2089,1),//立冬      array(22.36,1978,1),//小雪      array(7.18,1954,1),//大雪      array(21.94,2021,-1)//冬至    );    $term_name = array(    "小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨",    "立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑",    "白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至");    $idx1 = ($month-1)*2;    $_leap_value = floor(($year-1)/4);    $day1 = floor($year*0.2422+$coefficient[$idx1][0])-$_leap_value;    if(isset($coefficient[$idx1][1])&&$coefficient[$idx1][1]==$_year) $day1 += $coefficient[$idx1][2];    $day2 = floor($year*0.2422+$coefficient[$idx1+1][0])-$_leap_value;    if(isset($coefficient[$idx1+1][1])&&$coefficient[$idx1+1][1]==$_year) $day1 += $coefficient[$idx1+1][2];    //echo __FILE__.'->'.__LINE__.' $day1='.$day1,',$day2='.$day2.'
'.chr(10); $data=array(); if($day<$day1){ $data['name1']=$term_name[$idx1-1]; $data['name2']=$term_name[$idx1-1].'后'; }else if($day==$day1){ $data['name1']=$term_name[$idx1]; $data['name2']=$term_name[$idx1]; }else if($day>$day1 && $day<$day2){ $data['name1']=$term_name[$idx1]; $data['name2']=$term_name[$idx1].'后'; }else if($day==$day2){ $data['name1']=$term_name[$idx1+1]; $data['name2']=$term_name[$idx1+1]; }else if($day>$day2){ $data['name1']=$term_name[$idx1+1]; $data['name2']=$term_name[$idx1+1].'后'; } return $data; } /* * 获取节日:特殊的节日只能修改此函数来计算 */ function getFestival($today, $nl_info = false,$config = 1) { if($config == 1) { $arr_lunar=array('01-01'=>'春节','01-15'=>'元宵节','02-02'=>'二月二','05-05'=>'端午节','07-07'=>'七夕节','08-15'=>'中秋节','09-09'=>'重阳节','12-08'=>'腊八节','12-23'=>'小年'); $arr_solar=array('01-01'=>'元旦','02-14'=>'情人节','03-12'=>'植树节','04-01'=>'愚人节','05-01'=>'劳动节','06-01'=>'儿童节','10-01'=>'国庆节','10-31'=>'万圣节','12-24'=>'平安夜','12-25'=>'圣诞节'); }//需要不同节日的,用不同的$config,然后配置$arr_lunar和$arr_solar $festivals = array(); list($y,$m,$d) = explode('-',$today); if(!$nl_info) $nl_info = $this->convertSolarToLunar($y,intval($m),intval($d)); if($nl_info[7]>0&&$nl_info[7]<$nl_info[4]) $nl_info[4]-=1; $md_lunar = substr('0'.$nl_info[4],-2).'-'.substr('0'.$nl_info[5],-2); $md_solar=substr_replace($today,'',0,5); isset($arr_lunar[$md_lunar])?array_push($festivals, $arr_lunar[$md_lunar]):''; isset($arr_solar[$md_solar])?array_push($festivals, $arr_solar[$md_solar]):''; $glweek = date("w",strtotime($today)); //0-6 if($m==5&&($d>7)&&($d<15)&&($glweek==0))array_push($festivals, "母亲节"); if($m==6&&($d>14)&&($d<22)&&($glweek==0))array_push($festivals,"父亲节"); $jieqi = $this->getJieQi($y,$m,$d); if($jieqi)array_push($festivals,$jieqi); return implode('/',$festivals); } /* * 获取当前时间属于哪个时辰 @param int $time 时间戳 */ function getTheHour($h){ $d=$h; if($d==23 || $d==0){ return '子时'; }else if($d==1 || $d==2){ return '丑时'; }else if($d==3 || $d==4){ return '寅时'; }else if($d==5 || $d==6){ return '卯时'; }else if($d==7 || $d==8){ return '辰时'; }else if($d==9 || $d==10){ return '巳时'; }else if($d==11 || $d==12){ return '午时'; }else if($d==13 || $d==14){ return '未时'; }else if($d==15 || $d==16){ return '申时'; }else if($d==17 || $d==18){ return '酉时'; }else if($d==19 || $d==20){ return '戌时'; }else if($d==21 || $d==22){ return '亥时'; } }}//示例代码:$lunar=new Lunar();$today=$lunar->convertSolarToLunar(date(Y),date(m),date(d));echo "今天是公元".date(Y)."年".date(m)."月".date(d)."日
";echo "今天是农历".$today[0]."年".$today[1]."月".$today[2]."农历".$today[3]."年".$today[4]."月".$today[5]."日".$today[6]."年
";$month=$lunar->getJieQi(date(Y),date(m),date(d));//获取当前节气echo "今天节气:".$month[name2];?>

运行结果如下:

今天是公元2017年11月20日今天是农历2017年十月月初三农历丁酉年11月3日鸡年今天节气:立冬后

PS:这里再为大家推荐几款日期相关在线工具供大家参考:

网页万年历日历:
http://tools..net.cn/bianmin/webwannianli

在线阴历/阳历转换工具:
http://tools..net.cn/bianmin/yinli2yangli

在线万年历日历:
http://tools..net.cn/bianmin/wannianli

在线万年历黄历flash版:
http://tools..net.cn/bianmin/flashwnl

更多关于PHP相关内容感兴趣的读者可查看本站专题:《php日期与时间用法总结》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《php面向对象程序设计入门教程》及《php字符串(string)用法总结》

希望本文所述对大家PHP程序设计有所帮助。

您可能感兴趣的文章:

  • php下实现农历日历的代码
  • php 阴历-农历-转换类代码
  • php实现的农历算法实例
  • php阳历转农历优化版
  • PHP实现阳历到农历转换的类实例
  • PHP 实现公历日期与农历日期的互转换
  • php准确计算复活节日期的方法
  • php实现阳历阴历互转的方法
  • PHP编程实现阳历转换为阴历的方法实例


  • 上一条:
    PHP守护进程化在C和PHP环境下的实现
    下一条:
    PHP实现UTF8二进制及明文字符串的转化功能示例
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • PHP 8.4 Alpha 1现已发布!(0个评论)
    • 用Time Warden监控PHP中的代码处理时间(0个评论)
    • 在PHP中使用array_pop + yield实现读取超大型目录功能示例(0个评论)
    • Property Hooks RFC在PHP 8.4中越来越接近现实(0个评论)
    • 近期文章
    • 智能合约Solidity学习CryptoZombie第三课:组建僵尸军队(高级Solidity理论)(0个评论)
    • 智能合约Solidity学习CryptoZombie第二课:让你的僵尸猎食(0个评论)
    • 智能合约Solidity学习CryptoZombie第一课:生成一只你的僵尸(0个评论)
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2017-06
    • 2017-07
    • 2017-08
    • 2017-09
    • 2017-11
    • 2017-12
    • 2018-01
    • 2018-02
    • 2018-03
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2020-07
    • 2020-09
    • 2021-02
    • 2021-03
    • 2021-04
    • 2021-05
    • 2021-06
    • 2021-07
    • 2021-08
    • 2021-09
    • 2021-10
    • 2021-11
    • 2021-12
    • 2022-01
    • 2022-02
    • 2022-05
    • 2022-06
    • 2022-07
    • 2022-08
    • 2022-09
    • 2022-10
    • 2022-11
    • 2022-12
    • 2023-01
    • 2023-02
    • 2023-03
    • 2023-04
    • 2023-05
    • 2023-06
    • 2023-07
    • 2023-08
    • 2023-09
    • 2023-10
    • 2023-11
    • 2023-12
    • 2024-01
    • 2024-02
    • 2024-03
    • 2024-04
    • 2024-05
    • 2024-06
    • 2024-07
    • 2024-09
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客