hnhdigital-os/laravel-number-converter 问题修复 & 功能扩展

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

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

hnhdigital-os/laravel-number-converter

最新稳定版本:1.7.0

Composer 安装命令:

composer require hnhdigital-os/laravel-number-converter

包简介

Number to word, roman, ordinal converter

README 文档

README

This package provides a Laravel wrapper to the PHP-Number-Converter package that provides the ability to convert a numerical number to a word, roman numeral, or an ordinal suffix.

Latest Stable Version Total Downloads Latest Unstable Version Built for Laravel License Donate to this project using Patreon

StyleCI Issue Count Code Climate

This package has been developed by H&H|Digital, an Australian botique developer. Visit us at hnh.digital.

Requirements

  • PHP ^7.2|^8.0
  • Laravel ^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0

Install

Via composer:

$ composer require hnhdigital-os/laravel-number-converter

Enable an alias by editing config/app.php:

'aliases' => [
    ...
    'NumConvert' => 'HnhDigital\LaravelNumberConverter\Facade',
    ...
]

Convert to word

Supported number range -2147483647 to 2147483647.

echo NumConvert::word(1);
echo number_to_word(1);
one

Convert to roman

Supported number range 1 to 3999.

echo NumConvert::roman(1);
echo number_to_roman(1);
I

Ordinal (word + suffix)

Supported number range 1 to 2147483647.

echo NumConvert::wordOrdinal(1);
echo number_to_word_ordinal(1);
first

Ordinal (number + suffix)

Supported number range 1 to 2147483647.

echo NumConvert::numberOrdinal(1);
echo number_with_ordinal_suffix(1);
1st

Contributing

Please see CONTRIBUTING for details.

Credits

License

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

统计信息

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

GitHub 信息

  • Stars: 20
  • Watchers: 3
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-09-08