经济运营商注册和识别系统(EORI)验证器

1.0 2022-07-15 13:34 UTC

This package is auto-updated.

Last update: 2024-09-29 12:59:59 UTC


README

Total Downloads Latest Stable Version License

Economic Operators Registration and Identification system (EORI) Validator

经济运营商注册和识别(EORI)系统是国际贸易中的一个关键组成部分,旨在简化海关流程,提高跨境运营的效率。EORI验证器为企业和海关当局提供了一个可靠的工具,用于验证分配给欧盟内经济运营商的EORI号码的有效性。

"Buy Me A Coffee"

安装

composer require davidvandertuijn/eori

用法

use Davidvandertuijn\Eori\Validator as EoriValidator;

验证

$eori = new EoriValidator;

$eori->validate('NL857117683'); // true

if ($eori->isValid()) {
    // true
}

严格(可选)

当“严格”设置为false时,如果SOAP服务不可用(CURL超时或SoapFault),EORI号码验证将返回true

$eori->setStrict(false); // default = true

注释

我们建议您在应用程序中缓存有效的EORI号码,以防止对SOAP服务进行多次请求。