kyimyohan / body-mass-index
输出:健康|体重过轻|体重过重|肥胖 输入:体重&身高
1.0.0
2024-02-18 15:58 UTC
Requires (Dev)
- phpunit/php-code-coverage: ^11.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2024-09-19 02:44:00 UTC
README
体脂指数是一个PHP库,接受身高和体重作为输入,输出可能是健康、体重过轻、体重过重、肥胖。
身高:5' 2" => 5.2
体重:105磅
安装
使用composer进行安装。
composer require kyimyohan/body-mass-index
用法
use Kyimyohan\BodyMassIndex\BodyMassIndex; # returns 'healthy' $height = 5.2; $weight = 105 $bmi = BodyMassIndex::calculate($height, $weight)->getResult(); echo $bmi;
贡献
欢迎提交拉取请求。对于重大更改,请先提交问题以讨论您希望更改的内容。
请确保根据需要更新测试。