资源简介
PHP Javascript 农历公历互转,八字排盘,星座,日历,支持从-1000到3000年间的排盘,二十四节气
代码片段和文件信息
/**
* @author szargv@wo.cn
*
* 此日历转换类完全源于以下项目感谢这两个项目作者的无私分享:
* https://github.com/nozomi199/qimen_star (八字排盘JS源码)
* http://www.bieyu.com/ (详尽的历法转换原理JS源码)
*
* 我們現在所使用的以西元年月日表示的格里高利历(Gregorian calendar)
* 儒略日历(Julian day)以西元前4713年(或-4712年)1月1日12時為起點方便各历法间的转换
*/
class paipan{
/**
* 是否区分 早晚子 时true则23:00-24:00算成上一天
* @var bool
*/
public $zwz = false;
/**
* 十天干
* @var array
*/
public $ctg = array(‘甲‘ ‘乙‘ ‘丙‘ ‘丁‘ ‘戊‘ ‘己‘ ‘庚‘ ‘辛‘ ‘壬‘ ‘癸‘); //char of TianGan
/**
* 五行
*/
public $cwx = array(‘金‘ ‘木‘ ‘水‘ ‘火‘ ‘土‘); //char of WuXing
/**
* 天干对应五行
* @var array
*/
public $tgwx = array(1 1 3 3 4 4 0 0 2 2);
/**
* 十二地支
* @var array
*/
public $cdz = array(‘子‘ ‘丑‘
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-25 01:47 paipan-master\
文件 462 2018-12-25 01:47 paipan-master\README.md
文件 40591 2018-12-25 01:47 paipan-master\class.paipan.php
文件 841 2018-12-25 01:47 paipan-master\demo.md
文件 40359 2018-12-25 01:47 paipan-master\paipan.js
- 上一篇:PHP文字游戏源码天空之城ol(1)
- 下一篇:小说网站源码自动采集
评论
共有 条评论