一个非常强大的开源日历工具库,拥有更优的设计和更强的扩展性,支持公历、农历、藏历、星座、干支、生肖、节气、法定假日等。
使用:
<?php
use com\tyme\solar\SolarDay;
$solarDay = SolarDay::fromYmd(1986, 5, 29);
// 1986年5月29日
echo $solarDay;
// 农历丙寅年四月廿一
echo $solarDay->getLunarDay();
// 第十七饶迥火虎年四月廿一
echo $solarDay->getRabByungDay();
// 扩展方法
SolarDay::extend('myMethod', function () {
return sprintf('%04d-%02d-%02d', $this->getYear(), $this->getMonth(), $this->getDay());
});
// 1986-05-29
echo $solarDay->myMethod();
1.0.0 2025-07-29 >= HkCms_2.3.0
发布了第一个版本
博文
问答
相关应用
推荐应用