承接 ibantest/ibantest-php 相关项目开发

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

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

ibantest/ibantest-php

Composer 安装命令:

composer require ibantest/ibantest-php

包简介

PHP client of IBANTEST API

README 文档

README

This library can be used to access IBANTEST API endpoints.

Installing

Get last version with Composer.

$ composer require ibantest/ibantest-php

Register

You need an API token to use this API.

Please register your account at https://www.ibantest.com and receive 100 credits for free.

Basic Usage

<?php

include "vendor/autoload.php";

use Ibantest\Ibantest;

$api = new Ibantest();
$api->setToken('###your_api_token###');

# get count of remaining credits
$res = $api->getRemainingCredits();
print_r($res);

# validate IBAN
$res = $api->validateIban('DE02600501010002034304');
print_r($res);

# calculate IBAN (recommended: country specific endpoint methods)
$res = $api->calculateAtIban('12000', '703447144');
print_r($res);

# calculate IBAN for BE with check digits
$res = $api->calculateBeIban('510', '0075470', '61');
print_r($res);

# calculate IBAN for ES with bank code, branch and account
$res = $api->calculateEsIban('1465', '0092', '1234567890');
print_r($res);

# calculate IBAN for IT with CIN, ABI, CAB and account
$res = $api->calculateItIban('X', '05428', '11101', '000000123456');
print_r($res);

# calculate IBAN for CZ with optional prefix
$res = $api->calculateCzIban('0800', '123456789', '19');
print_r($res);

# calculate IBAN for LI
$res = $api->calculateLiIban('08810', '123456789');
print_r($res);

# calculate IBAN for LU
$res = $api->calculateLuIban('001', '1234567890123');
print_r($res);

# calculate IBAN for MC with bank code, branch and account
$res = $api->calculateMcIban('11222', '33444', '12345678901');
print_r($res);

# calculate IBAN for NL
$res = $api->calculateNlIban('ABNA', '0123456789');
print_r($res);

# generic calculate IBAN method is still available
$res = $api->calculateIban('DE', '10090000', '0657845795');
print_r($res);

# validate BIC
$res = $api->validateBic('BFSWDE33BER');
print_r($res);

# find Bank by country code and bank code
$res = $api->findBank('CH', '100');
print_r($res);

Endpoint Update Notice

The client now targets the primary API endpoints with hyphens:

  • validate-iban
  • calculate-iban
  • validate-bic
  • find-bank

Fallback routes with underscores are not exposed as dedicated client methods.

Breaking Changes

  • The client now requests primary API endpoints with hyphens instead of underscore-style fallback routes.
  • Public method signatures are now strictly typed (string input parameters).
  • URL path segments are encoded internally before requests are sent.

Upgrade Guide

Before:

$res = $api->calculateIban('AT', '12000', '703447144');

After (recommended):

$res = $api->calculateAtIban('12000', '703447144');

Before:

$res = $api->validateBic('BFSWDE33BER');
$res = $api->findBank('CH', '100');

After:

$res = $api->validateBic('BFSWDE33BER');
$res = $api->findBank('CH', '100');

Documentation

Please have a look at the full documentation https://api.ibantest.com/

License

ibantest-php is licensed under the MIT License - see the LICENSE file for details

ibantest/ibantest-php 适用场景与选型建议

ibantest/ibantest-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.56k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2018 年 05 月 04 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

围绕 ibantest/ibantest-php 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-05-04