unapi/helper-money
最新稳定版本:1.3.2
Composer 安装命令:
composer require unapi/helper-money
包简介
Unapi helper: money
README 文档
README
PHP implementation for the MoneyAmount pattern.
Installation
With composer:
composer require unapi/helper-money
Usage
Create Money amount:
use unapi\helper\money\MoneyAmount; use unapi\helper\money\Currency; $money = new MoneyAmount(20.0, new Currency(Currency::EUR));
Create wallet:
use unapi\helper\money\Wallet; use unapi\helper\money\MoneyAmount; use unapi\helper\money\Currency; $wallet = new Wallet([ new MoneyAmount(20.0, new Currency(Currency::EUR)) new MoneyAmount(10.0, new Currency(Currency::USD)) ]); $wallet->addMoney( new MoneyAmount(5.0, new Currency(Currency::EUR)) );
统计信息
- 总下载量: 4.73k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2018-01-23