您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

php将阳历转换为阴历

2026/2/6 21:09:00发布14次查看
php类
lunarinfo[$year-$this->min_year]; if($year==$this->min_year&&$monthgetlunarbybetween($year,$this->getdaysbetweensolar($year,$month,$date,$yeardata[1],$yeardata[2])); } public function convertsolarmonthtolunar($year,$month,$date) { $yeardata = $this->lunarinfo[$year-$this->min_year]; if($year==$this->min_year&&$monthisleapyear($year) && $month == 2) $dd++; $lunar_ary = array(); for ($i = 1; $i 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 阴历-日 */ public 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 */ public function isleapyear($year) { return (($year%4==0 && $year%100 !=0) || ($year%400==0)); } /** * 获取干支纪年 * @param year */ public function getlunaryearname($year) { $sky = array('庚','辛','壬','癸','甲','乙','丙','丁','戊','己'); $earth = array('申','酉','戌','亥','子','丑','寅','卯','辰','巳','午','未'); $year = $year.''; return $sky[$year{3}].$earth[$year%12]; } /** * 根据阴历年获取生肖 * @param year 阴历年 */ public function getyearzodiac($year) { $zodiac = array('猴','鸡','狗','猪','鼠','牛','虎','兔','龙','蛇','马','羊'); return $zodiac[$year%12]; } /** * 获取阳历月份的天数 * @param year 阳历-年 * @param month 阳历-月 */ public 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 阴历-月,从一月开始 */ public function getlunarmonthdays($year,$month) { $monthdata = $this->getlunarmonths($year); return $monthdata[$month-1]; } /** * 获取阴历每月的天数的数组 * @param year */ public function getlunarmonths($year) { $yeardata = $this->lunarinfo[$year - $this->min_year]; $leapmonth = $yeardata[0]; $bit = decbin($yeardata[3]); for ($i = 0; $i lunarinfo[$year-$this->min_year]; $montharray = $this->getlunaryearmonths($year); $len = count($montharray); return ($montharray[$len-1]==0?$montharray[$len-2]:$montharray[$len-1]); } public function getlunaryearmonths($year) { $monthdata = $this->getlunarmonths($year); $res=array(); $temp=0; $yeardata = $this->lunarinfo[$year-$this->min_year]; $len = ($yeardata[0]==0?12:13); for($i=0;$ilunarinfo[$year-$this->min_year]; return $yeardata[0]; } /** * 计算阴历日期与正月初一相隔的天数 * @param year * @param month * @param date */ public function getdaysbetweenlunar($year,$month,$date) { $yearmonth = $this->getlunarmonths($year); $res=0; for($i=1;$i0? $year : ($year-1); $yearmonth = $this->getlunaryearmonths($year); $leapmonth = $this->getleapmonth($year); $between = $between>0?$between : ($this->getlunaryeardays($year)+$between); for($i=0;$igetcapitalnum($t- 1,true)):$this->getcapitalnum(($leapmonth!=0&&$leapmonth+1getcapitalnum($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 是否是月份的数字 */ public 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($num10&&$num20&&$num'春节','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]7)&&($d14)&&($dgetjieqi($y,$m,$d); if($jieqi)array_push($festivals,$jieqi); return implode('/',$festivals); }}
调用方法:
$lunar = new lunar();$month = $lunar->convertsolartolunar(date('y'),date('m'),date('d'));print_r($month);
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product