PHP code example of maturest / trigram
1. Go to this page and download the library: Download maturest/trigram library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maturest / trigram example snippets
php artisan vendor:publish --provider="Maturest\Trigram\DestinyServiceProvider"
use Maturest\Trigram\WalletPassword;
// 初始化
$walletPassword = new WalletPassword();
// 阳历生日的钱包密码
$res_solar = $walletPassword->getResultBySolar('1990-11-20');
// 阴历生日的钱包密码
$res_lunar = $walletPassword->getResultByLunar('1990-10-04');
array:2 [▼
"banknotes" => 2900 //新钞数量
"wallet" => array:5 [▼ //钱包属性
"month" => "10"
"primary" => array:1 [▼ //主要颜色
0 => "yellow"
]
"secondary" => array:2 [▼ //辅助颜色
0 => "black"
1 => "gray"
]
"note" => "黄色为主,黑色、灰色为辅" //备注说明
"img" => "wallet/ybg.png" //示例图片
]
]
use Maturest\Trigram\Plate;
// 初始化
$plate = new Plate();
// 阳历生日的排盘
$res_solar = $plate->getResultBySolar('1999-11-11 19:05:36');
// 阴历生日的排盘
$res_lunar = $plate->getResultByLunar('1999-11-11 19:05:36');
/*
array:13 [▼
"front_nums" => array:9 [▶] // 先天数
"later_nums" => array:9 [▶] // 后天数
"front_gram_relation" => array:9 [▶] // 先天数克关系
"later_gram_relation" => array:9 [▶] // 后天数克关系
"gram_statistics" => array:3 [▶] // 克关系的统计
"front_wx" => array:9 [▶] // 先天数的五行
"later_wx" => array:9 [▶] // 后天数的五行
"front_lunar_solar" => array:9 [▶] // 先天数的阴阳
"later_lunar_solar" => array:9 [▶] // 后天数的阴阳
"front_raw_relation" => array:9 [▶] // 先天数生关系
"later_raw_relation" => array:9 [▶] // 后天数生关系
"front_prosper_relation" => array:9 [▶] // 先天数比旺关系
"later_prosper_relation" => array:9 [▶] // 后天数比旺关系
]
*/
$clothesGuide = new ClothesGuide();
$res = $clothesGuide->getGuideBySolar('2023-06-10');
/*
array:4 [▼
"wx" => "水"
"proposal" => "建议您穿蓝色、黑色为主,绿色、紫色为辅的衣服"
"taboo" => "今日不宜穿红色的衣服"
"diet" => "今日适宜吃蓝色、黑色的食物,可增强体内的五行能量场"
]
*/