ageekdev/laravel-num 问题修复 & 功能扩展

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

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

ageekdev/laravel-num

Composer 安装命令:

composer require ageekdev/laravel-num

包简介

To convert the unicode digit to another unicode digit.

README 文档

README

Latest Version on Packagist Laravel 12.x Laravel 13.x GitHub Tests Action Status Total Downloads

To convert the unicode digit to another unicode digit.

Supported languages

By default, You can convert english, myanmar and thai numbers. If you would like to add more, you can add zero unicode characters at config/num.php. You can see more zero unicode character at zero-unicode.md.

Installation

You can install this package via composer using this command:

composer require ageekdev/laravel-num

The package will automatically register itself.

Publish configuration and asset files

php artisan vendor:publish --provider="AgeekDev\Num\NumServiceProvider"

Usage

Using the facade

Direct convert from the english number to the myanmar number

Num::convert('1234๑๒๓๔','mm','en'); 
// ၁၂၃၄๑๒๓๔

Convert to the myanmar number

Num::toMyanmar('1234๑๒๓๔'); 
// ၁၂၃၄၁၂၃၄

Convert to the thai number

Num::toThai('1234'); 
// ๑๒๓๔

Convert to the english number

Num::toEnglish('၁၂၃၄'); 
// 1234

Using with Helpers

Convert to the myanmar number

num_to_mm('1234'); 
// ၁၂၃၄

Convert to the thai number

num_to_th('1234');
// ๑๒๓๔

Convert to the english number

num_to_eng('၁၂၃၄');
// 1234

Macro

The Laravel Num allows you to define "macros", which can serve as a fluent, expressive mechanism to configure string, to language and from language when interacting with services throughout your application. To get started, you may define the macro within the boot method of your application's App\Providers\AppServiceProvider class:

use AgeekDev\Num\Facades\Num;
 
/**
 * Bootstrap any application services.
 *
 * @return void
 */
public function boot()
{
    Num::macro('toMyanmarShan', function (int|string|null $string, string $from = null) {
        return Num::convert($string, 'shan', $from);
    });
}

Once your macro has been configured, you may invoke it from anywhere in your application to convert numbers with the specified configuration:

$numbers = Num::toMyanmarShan('1234567890');

// ႑႒႓႔႕႖႗႘႙႐

Note If convert language don't have in num.php, you may configure this language in your num configuration file.

'zeros' => [
    'en' => 0,
    'mm' => '',
    'th' => '',
    'shan' => ''
],

Testing

You can run the tests with:

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.

统计信息

  • 总下载量: 424
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 19
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-10-03

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固