allanmcarvalho/numerable 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

allanmcarvalho/numerable

Composer 安装命令:

composer require allanmcarvalho/numerable

包简介

This is my package numerable

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads codecov

This package provide a solution like Laravel strings utils classes. With it, you can do some cool stuffs in your numbers like assert, modify, math operations, format and other things.

Installation

You can install the package via composer:

composer require allanmcarvalho/numerable

Basic usage

Numerable is like Laravel string utils classes. You can use Helper class or an instance from numerable.

use Numerable\Numerable;
use Numerable\Number;

Number::add(2, 4, 6); // 12
Number::equal(2.0, 2); // true
Number::equal(2.0, 2, strict: true); // false
Number::divide(100, 2); // 50
Number::gt(10, 11); // false
Number::gte(11.0, 11); // true
Number::lt(10, 11); // true
Number::lte(11.0, 11); // true
Number::multiply(2, 10, 5); // 100
Number::parse('21.32%'); // 21.32
Number::sub(20, 4, 1); // 15
Number::toCurrency(213.21); // $213.21
Number::toFloat(1_000); // 1000.0
Number::toInteger(23.21); // 23
Number::toOrdinal(1); // 1st
Number::toPercentage(0.52, precision: 0); // 52%
Number::toReadableSize(1024 * 1024 * 512); // 512MB

//or 

$number = Number::from(10)
    ->add(2) // now is 12
    ->divide(2.5) // now is 4.8
    ->multiplyBy(4) // now is 19.2
    ->sub(4); // now is 15.2
    
//or

$number = num(10)
    ->add(2) // now is 12
    ->divide(2.5) // now is 4.8
    ->multiplyBy(4) // now is 19.2
    ->sub(4); // now is 15.2

$number->equal(15.10); // false
$number->gt(10); // true
$number->gte(18); // false
$number->lt(10); // false
$number->lte(18); // true
$number->toCurrency(); // $15.20
$number->toCurrency('BRL', 'pt_BR'); // R$15,20
$number->toFloat(); // 15.2
$number->toFormat(places: 0, suffix: ' oranges'); // 15 oranges
$number->toInteger(); // 15
$number->toOrdinal(); // 15th
$number->toPercentage(sourceHumanized: true); // 15.00%
$number->toReadableSize(short: false); // 15.2 bytes
    

Available methods

  • abs - Get absolute value. Available as static method and instance method.
  • add - Add numbers. Available as static method and instance method.
  • asHumanPercentage - Format number to human percentage. Available only as instance method.
  • asFractionPercentage - Format number to fraction percentage. Available only as instance method.
  • equal - Compare numbers. Available as static method and instance method.
  • diff - Get difference between numbers. Available as static method and instance method.
  • divide - Divide numbers. Available as static method and instance method.
  • divideBy - Divide an instance value by a divisor. Available as instance method.
  • gt - Check if number is greater than another number. Available as static method and instance method.
  • gte - Check if number is greater than or equal to another number. Available as static method and instance method.
  • isEven - Check if number is even. Available as static method and instance method.
  • isFloat - Check if number is float. Available as static method and instance method.
  • isInteger - Check if number is integer. Available as static method and instance method.
  • isMultipleOf - Check if number is multiple of another number. Available as static method and instance method.
  • isNegative - Check if number is negative. Available as static method and instance method.
  • isOdd - Check if number is odd. Available as static method and instance.
  • isPositive - Check if number is positive. Available as static method and instance method.
  • lt - Check if number is less than another number. Available as static method and instance method.
  • lte - Check if number is less than or equal to another number. Available as static method and instance method.
  • multiply - Multiply numbers. Available as static method.
  • multiplyBy - Multiply number by another number. Available as instance method.
  • parse - Parse string to number. Available as static method.
  • round - Round number. Available as static method and instance method.
  • roundAsMultipleOf - Round number as multiple of another number. Available as static method and instance method.
  • sub - Subtract numbers. Available as static method and instance method.
  • takeAPart - Take a part of number. Available as static method and instance method.
  • toCurrency - Format number to currency. Available as static method and instance method.
  • toFloat - Format number to float. Available as static method and instance method.
  • toFormatted - Format number to formatted string. Available as static method and instance method.
  • toInteger - Format number to integer. Available as static method and instance method.
  • toOrdinal - Format number to ordinal. Available as static method and instance method.
  • toPercentage - Format number to percent. Available as static method and instance method.
  • variation - Get variation between numbers. Available as static method.
  • variationFrom - Get variation from a base number. Available as instance method.
  • variationTo - Get variation to a base number. Available as instance method.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

allanmcarvalho/numerable 适用场景与选型建议

allanmcarvalho/numerable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 387 次下载、GitHub Stars 达 3, 最近一次更新时间为 2023 年 11 月 18 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「laravel」 「numerable」 「allanmcarvalho」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 allanmcarvalho/numerable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 allanmcarvalho/numerable 我们能提供哪些服务?
定制开发 / 二次开发

基于 allanmcarvalho/numerable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-11-18