021/numeric
Composer 安装命令:
composer require 021/numeric
包简介
A PHP library for working with precise numbers.
README 文档
README
A PHP library to convenient work with arbitrary precision numbers.
Requirements
- PHP 8.1 or higher
Library is based on Brick\Math package:
Although the library can work seamlessly on any PHP installation, it is highly recommended that you install the GMP or BCMath extension to speed up calculations. The fastest available calculator implementation will be automatically selected at runtime.
Installation
You can install the package via composer:
composer require 021/numeric
Usage
use function O21\Numeric\Helpers\num; $number = num('123.456'); echo $number->add('0.544')->get();
Calculations
All computational functions accept as an argument a value of one of the following
types: string, float, int, \O21\Numeric\Numeric, \Brick\Math\BigNumber.
| Function | Description |
|---|---|
add |
Adds a value to a number |
sub |
Subtracts a value from a number |
mul |
Multiplies a number by a value |
div |
Divides a number by a value |
Comparisons
All comparison functions accept as an argument a value of one of the following
types: string, float, int, \O21\Numeric\Numeric, \Brick\Math\BigNumber.
| Function | Description |
|---|---|
equals |
Checks if two values are equal. It returns true if the values are equal and false otherwise. |
greaterThan |
Compares two values and returns true if the first value is greater than the second one. |
lessThan |
Compares two values and returns true if the first value is less than the second one. |
greaterThanOrEqual |
Compares two values and returns true if the first value is greater than or equal to the second one. |
lessThanOrEqual |
Compares two values and returns true if the first value is less than or equal to the second one. |
Formatting
| Function | Description |
|---|---|
positive |
Returns a number represented as positive. |
negative |
Returns a number represented as negative. |
scale |
Converts a number to a given scale, using rounding if necessary. |
get |
Returns a number as string. By default removes trailing zeros. Use the raw: true option to disable this. |
__toString |
Returns a get function result |
Helpers
Namespace: O21\Numeric\Helpers
| Function | Description |
|---|---|
num |
Creates a new Numeric instance |
num_min |
Returns a minimum value from a given values. Support any of these types: string, float, int, \O21\Numeric\Numeric, \Brick\Math\BigNumber |
num_max |
Returns a maximum value from a given values. Support any of these types: string, float, int, \O21\Numeric\Numeric, \Brick\Math\BigNumber |
to_bn |
Converts any of these types string, float, int, \O21\Numeric\Numeric, \Brick\Math\BigNumber to \Brick\Math\BigNumber |
021/numeric 适用场景与选型建议
021/numeric 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.19k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 02 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 021/numeric 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 021/numeric 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 4.19k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 17
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-28