一个非常强大的开源日历工具库,拥有更优的设计和更强的扩展性,支持公历、农历、藏历、星座、干支、生肖、节气、法定假日等。
使用:
<?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.1 2025-09-25 >= HkCms_2.3.0
【优化】调整兼容7.4版本
【注意】第一版兼容8.0以上版本,在7.4以下版本会有问题,7.4版本及以下请安装此版本
【使用】
<?php
use com\nlf\calendar\Lunar;
$lunar = Lunar::fromYmd(1986,4,21);
echo $lunar->toFullString()."\n";
echo $lunar->getSolar()->toFullString()."\n";
1.0.0 2025-07-29 >= HkCms_2.3.0
发布了第一个版本
博文
问答
相关应用
推荐应用