Skip to content

Instantly share code, notes, and snippets.

View fschell's full-sized avatar

Folker Schellenberg fschell

View GitHub Profile
@fschell
fschell / checkUstId.php
Created March 4, 2014 09:51
check UstId
<?php
function checkUstId($ustId) {
$serviceUrl = 'http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl';
$vatNumber = substr($ustId,2);
$countryCode = substr($ustId,0,2);
$soap = new SoapClient($serviceUrl);
$result = $soap->checkVat(array("countryCode" => $countryCode, "vatNumber" => $vatNumber));