IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    VAT number verify

    阿維发表于 2014-12-29 05:31:23
    love 0

    驗證VAT號碼是否有效的簡易小程式

    function checkVAT($vatNumber) {
        $_vatCountry = strtoupper(substr($vatNumber, 0, 2));
        $_vatNumber  = substr($vatNumber, 2);
    
        $client = new SoapClient("http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl");
        $checkRes = $client->checkVat(array(
    			'countryCode' => $_vatCountry,
    			'vatNumber' => $_vatNumber
        ));
    
        return $checkRes;
    }
    


沪ICP备19023445号-2号
友情链接