Skip to content

Instantly share code, notes, and snippets.

@IonBazan
Created April 17, 2018 22:19
Show Gist options
  • Save IonBazan/384d477b2ac9b0f247033d25d46e876e to your computer and use it in GitHub Desktop.
Save IonBazan/384d477b2ac9b0f247033d25d46e876e to your computer and use it in GitHub Desktop.
Sprawdzanie statusu płatnika VAT
<?php
$nip = '7740001454';
$client = new SoapClient('https://sprawdz-status-vat.mf.gov.pl/?wsdl');
$result = $client->SprawdzNIP($nip);
var_dump($result);
// Result:
// object(stdClass)#2 (2) {
// ["Kod"]=>
// string(1) "C"
// ["Komunikat"]=>
// string(93) "Podmiot o podanym identyfikatorze podatkowym NIP jest zarejestrowany jako podatnik VAT czynny"
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment