定制 rtlopez/decimal 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rtlopez/decimal

最新稳定版本:1.0.8

Composer 安装命令:

composer require rtlopez/decimal

包简介

An object oriented immutable arbitrary-precision arithmetic library for PHP

README 文档

README

An object oriented arbitrary precision arithmetic class for PHP (>5.3.3).

test

Installation

You can use Composer

To add this package as a local, per-project dependency to your project, simply add a dependency on rtlopez/decimal to your project's composer.json file. Here is a minimal example of a composer.json file that just defines a dependency on Decimal:

{
  "require": {
    "rtlopez/decimal": "^1.0"
  }
}

Features

The Decimal class can be used for an arbitrary precision calculation. Main features are:

  • Immutable result of each operation,
  • The same result precision,
  • Safe for finance calculations,
  • Fluent interface,
  • Many unit test (more than 1100 tests and 3700 assertions),
  • Easy to use and install,

Why should I use it?

The Decimal solve several inconveniences known in other solutions.

  • Float is only an aproximation and have limited precision,
  • Fixed-point have limited size (64-bits on 64-bit system),
  • Pure bcmath cannot correctly round, only truncate,
  • GMP is not object-oriented

Usage

Creating objects with simple factory

use RtLopez\Decimal;

$n1 = Decimal::create(123, 2);
$n2 = Decimal::create(123.45, 2); // not recommended
$n3 = Decimal::create('123.45', 2);
$n4 = Decimal::create($n1, 2);

Printing and formatting numbers

$number = Decimal::create('12345.671', 2);

echo (string)$number;
// 12345.67

echo $number->format(1, ',', ' ');
// 12 345,7

echo $number->truncate()->format(null, ',', ' ', false);
// 12 345,00

Arithmetics

$n1 = Decimal::create('12345.671', 3);
$n2 = Decimal::create('11111.111', 3);
$n3 = $n1->add($n2)->mul(-1);
echo $n3; // -23456.782

// fluid interface
$n4 = $n3->pow(2)->sqrt()->mul(-2)->div(2)->abs();

Immutable

$n1 = Decimal::create('12345.671', 3);
$n1->add(2);
...
echo $n1;
// 12345.671

Comparisions

$n1 = Decimal::create('12345.671', 3);
$n2 = Decimal::create('11111.111', 3);
$n1->gt($n2);        // true
$n1->eq(0);          // false
$n2->le(100);        // false

Rounding

$n = Decimal::create('12345.671', 3);
echo $n->round(2);   // 12345.67
echo $n->round(1);   // 12345.7
echo $n->truncate(); // 12345
echo $n->ceil(1);    // 12345.6
echo $n->floor();    // 12345

Implementations

There are exists three internal implementations of this library.

  • RtLopez\DecimalBCMath: (default)based on bcmath library
  • RtLopez\DecimalFixed: based on scaled integers
  • RtLopez\DecimalFloat: based on floats

Only BCMath implementation works correctly in wide spectrum of numbers. All others can fail in many border cases. They was implemented only as proof of concept and you can using it only for your own risk.

The default implementation or precision can be changed by functions:

Decimal::setDefaultImplementation('RtLopez\DecimalBCMath');
Decimal::setDefaultPrecision(6);

Licence

This library is distributed under MIT Licence.

Issue reporting or feature request

Coming soon.

TODO

  • GMP implementation

Donation

BTC: 1Lopez7yPtbyjfLGe892JfheDFJMMt43tW LTC: LV3G3sJxz9AYpDMYUp8e1LCmerFYxVY3ak

统计信息

  • 总下载量: 253.52k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 27
  • 点击次数: 3
  • 依赖项目数: 2
  • 推荐数: 1

GitHub 信息

  • Stars: 27
  • Watchers: 2
  • Forks: 11
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 未知

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固