rodgermd/ibanapide-bundle

iban-api.de 集成

安装: 267

依赖: 0

建议者: 0

安全性: 0

星标: 2

关注者: 1

分支: 0

公开问题: 0

类型:symfony-bundle

v0.3.1 2014-04-17 10:08 UTC

This package is not auto-updated.

Last update: 2024-09-14 15:16:40 UTC


README

集成 http://www.iban-api.de/soap-service/

添加用于ajax操作的控制器

添加到routing.yml

rodgermd_iban_controller:
    resource: "@RodgermdIbanApiDeBundle/Controller/"
    type: annotation
    prefix: /iban

用法

获取服务

$api = $container->get('rodgermd.iban.api');

获取IBAN代码

出错时抛出IbanApiErrorException异常

$iban = $api->generateIBAN($countryCode, $bankIdentification, $accountNr); 

验证IBAN代码

$valid = $api->validateIban($iban);

从IBAN获取BIC代码

出错时抛出IbanApiErrorException异常

$bic = $api->getBicFromIban($iban);