大卡实验室 / 生日
验证生日,解析有效生日的年龄和星座。
v1.4.0
2020-03-11 10:06 UTC
Requires
- php: >=7
Requires (Dev)
README
验证生日,解析有效生日的年龄和星座。
安装
composer require dakalab/birthday
用法
use Dakalab\Birthday\Birthday;
$birthday = new Birthday('2018-12-01', 'zh');
$age = $birthday->getAge();
$constellation = $birthday->getConstellation();
$formatedDate = $birthday->format('d/m/Y'); // 01/12/2018
$normalizedDate = (string) $birthday; // 2018-12-01