nicmart/numbers
Composer 安装命令:
composer require nicmart/numbers
包简介
Format numbers in various formats, like scientific notation or unit-suffix notation
README 文档
README
Numbers provides a simple and powerful way to convert numbers in various string formats, like scientific notation or unit-suffix notation.
It also gives you control on numbers precision (that's different of the numbers of decimals!), making it simple to format numbers as you want in your view layer.
For installing instructions, please go to the end of this README.
Usage
First, instantiate an object of the Number class. You can do it in two ways: directly or using the n static method:
use Numbers\Number; $n = new Number(3.1415926535898); $n = Number::n(3.1415926535898);
You can then retrieve the underlying float/int value using the get method:
var_dump($n->get()); //double(3.1415926535898)
Significant figures
You can set the number of significant figures using the method round.
$n->round(5)->get(); // returns 3.1416
As you can see, the round method works differently from the php builtin roundfunction, since you are not setting the number of decimals, but the number of significant figures:
(new Number(0.000123456))->round(5)->get(); // returns 0.00012346
Scientific notation
You can easily convert a Number to Scientific Notation:
$sciNotation = Number::n(1234.567)->getSciNotation(); echo $sciNotation->significand; // 1.234567 echo $sciNotation->magnitude; // 4
A SciNotation objects convert themselves to html when casted to strings:
(string) Number::n(1234.567)->getSciNotation() → 1.234567 × 104
(string) Number::n(0.000023)->getSciNotation() → 2.3 × 10-5
Suffix notation
With suffix notation you can convert a number to a format using the metric prefix notation. What you will get is a number followed by a suffix that indicates the magnitude of that number, using the "kilo", "mega", etc... symbols. All the SI symbols are supported.
// Prints "1.23k" echo Number::n(1234.567)->round(3)->getSuffixNotation(); // Prints "79G" echo Number::n(79123232123)->round(2)->getSuffixNotation(); // Prints "123.4µ" echo Number::n(0.0001234)->getSuffixNotation();
Format with thousands and decimals separator
The format method works like number_format, but without the hassle of specifying the
number of decimals. The number of significant figures will be used instead. Furthermore, it
will not print trailing zeros in the decimal part.
// Prints "123,123.23" echo Number::n(123123.23)->format(); // Prints "123 123,23" echo Number::n(123123.23)->format(',', ' ');
By default format fallbacks to . and , separators if some argument is missing. If you want instead
to fallback to the current locale settings of the machine, you can use localeFormat.
Other functions
Floor and Ceil
They behave like their mathematical counterparts and the builtin php functions:
// Returns "123123" Number::n(123123.23)->floor()->get(); // Returns "123124" Number::n(123123.23)->ceil()->get();
Magnitude
Gives the order of magnitude of the number (that is equal to the exponent of 10 in the Scientific Notation):
// Returns 6 Number::n(123123.23)->getMagnitude(); // Returns -2 Number::n(0.01232)->getMagnitude();
n-th digit
Gives the n-th digit of the number in a given base
// Returns 4 Number::n(1234.5678)->getDigit(0); // Returns 3 Number::n(1234.5678)->getDigit(1); //Returns 7 Number::n(1234.5678)->getDigit(-3); // Second optional arg is the base (default is 10) // Returns 1 Number::n(bindec('10110101'))->getDigit(0, 2); // Returns 0 Number::n(bindec('10110101'))->getDigit(6, 2);
Sign
The sign function, as defined in mathematics
// Returns 1 Number::n(12312)->getSign(); // Returns -1 Number::n(-0.0023)->getSign(); // Returns 0 Number::n(0)->getSign();
Apply
Apply a callback to the underlying scalar number, in a Monad fashion:
$double = function($n){ return 2 * $n; }; // Returns 16 Number::n(4)->apply($double)->apply($double)->get();
Install
The best way to install Numbers is through composer.
Just create a composer.json file for your project:
{
"require": {
"nicmart/numbers": "dev-master"
}
}
Then you can run these two commands to install it:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install
or simply run composer install if you have have already installed the composer globally.
Then you can include the autoloader, and you will have access to the library classes:
<?php require 'vendor/autoload.php';
nicmart/numbers 适用场景与选型建议
nicmart/numbers 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 194.61k 次下载、GitHub Stars 达 54, 最近一次更新时间为 2013 年 09 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 nicmart/numbers 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 nicmart/numbers 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 194.61k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 54
- 点击次数: 23
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-09-05