sunfoxcz/price-calculator
最新稳定版本:v2.0.0
Composer 安装命令:
composer require sunfoxcz/price-calculator
包简介
Library for easier price calculation using VAT and discount.
README 文档
README
Library for easier price calculation using VAT and discount.
Installation
composer require sunfoxcz/price-calculator
Usage
<?php declare(strict_types=1); use Sunfox\PriceCalculator\Discount\PercentDiscount; use Sunfox\PriceCalculator\PriceCalculator; /* @var Sunfox\PriceCalculator\PriceCalculatorResult $calc */ $calc = (new PriceCalculator) ->setBasePrice(1983.48) ->setDiscount(new PercentDiscount(10.0)) ->setVatRate(21.0) ->calculate(); $calc->getBasePrice(); // price without VAT and discount $calc->getDiscount(); // discount in percent without VAT $calc->getPrice(); // price after discount without VAT $calc->getVatRate(); // VAT rate in percent $calc->getVat(); // VAT value $calc->getPriceVat(); // price after discount with VAT $calc->toArray(); // Ger results as array $calc->getCalculator(); // Sunfox\PriceCalculator\PriceCalculator
统计信息
- 总下载量: 5.75k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-07-22