承接 elgigi/iban 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

elgigi/iban

Composer 安装命令:

composer require elgigi/iban

包简介

Library to manipulate IBAN and BBAN of countries

README 文档

README

Latest Version Software License Build Status Codacy Grade Total Downloads

PHP Library to manipulate IBAN and BBAN of countries, with validation, parsing, JSON representation...

Installation

You can install the library with Composer:

composer require elgigi/iban

Usage

Parsing

You can parse an IBAN with Iban::parse() method:

$iban = Iban::parse('FR14 2004 1010 0505 0001 3M02 606');

Or a BBAN with Bban::parse() method:

$bban = Bban::parse('2004 1010 0505 0001 3M02 606', Country::FR);

IBAN and BBAN

Iban object is composed of 2 parts:

  • \ElGigi\Iban\Bban object (representation of a BBAN)
  • Check digits

Bban object is composed of multiple properties:

  • Bank identifier
  • Branch identifier 1
  • Account number
  • Check digits 1
  • Currency 1
  • Additional digits 1
  • ...

Both object have format() method to have a string representation of object. This method accept a boolean parameter to have the "condensed" representation (without spaces).

JSON

For IBAN, the JSON serialization give the IBAN string representation:

"FR14 2004 1010 0505 0001 3M02 606"

For BBAN, it's little different because, we need the country to build the BBAN object again, so the JSON representation is:

{
  "country": "FR",
  "bban": "2004 1010 0505 0001 3M02 606"
}

After is simple to use parse() methods of classes to build objects again.

Validation

Validation of IBAN

Call Iban::isValid():bool method to known if IBAN is valid.

Or use IbanValidation::validate(): bool static method to valid an IBAN object or string representation.

Also, you can construct an IBAN from BBAN without check digits, library guess them, example:

$iban = new Iban(Bban::parse('2004 1010 0505 0001 3M02 606', Country::FR));
print $iban->format(); // Output: 'FR14 2004 1010 0505 0001 3M02 606'

Validation of BBAN

Depends on banks and countries, BBAN validation is available with method Bban::isValid()

Or uses BbanValidation::validate(): bool static method to valid a BBAN object or string representation.

In case of bank haven't control on BBAN, the method return always TRUE.

Country

An IBAN is associated to a country. A country is represented by Country enum. All countries with IBAN support are listed.

You can also use helpers static methods:

  • Country::sepaMembers(): array: list of countries SEPA members
  • Country::from(string $iso): Country: country enum value from ISO code

Or methods with country value (FR in example):

  • Country::FR->isSepaMember(): bool: country is SEPA member?
  • Country::FR->getCurrency(): Currency: main currency of country
  • Country::FR->getLanguage(): Language|Language[]: language(s) of country
  • Country::FR->getLocale(): string|string[]: locale(s) of country
  • Country::FR->getIbanRegex(): string: IBAN regex of country

Language

Language enum is a representation of languages of countries.

To find whose countries speak a language, you can use helper method:

Language::fr->getCountries(): Country[]

Currency

Currency enum is a representation of currency of countries.

To find whose countries have currency, you can use helper method:

Currency::fr->getCountries(): Country[]

Footnotes

  1. Depends on banks and countries 2 3 4

elgigi/iban 适用场景与选型建议

elgigi/iban 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11.85k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2022 年 03 月 15 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

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