PHP code example of phpcfdi / sat-estado-retenciones
1. Go to this page and download the library: Download phpcfdi/sat-estado-retenciones library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phpcfdi / sat-estado-retenciones example snippets
use PhpCfdi\SatEstadoRetenciones\Exceptions\HttpClientException;
use PhpCfdi\SatEstadoRetenciones\Exceptions\RetentionNotFoundException;
use PhpCfdi\SatEstadoRetenciones\Service;
$contents = file_get_contents('archivo-de-retenciones.xml');
$service = new Service();
$parameters = $service->makeParametersFromXml($contents);
try {
$result = $service->query($parameters);
} catch (RetentionNotFoundException $exception) {
echo "El CFDI de retenciones {$exception->getParameters()->uuid} no fue encontrado.\n";
return;
} catch (HttpClientException $exception) {
echo "No se pudo conectar al servicio en la URL {$exception->getUrl()}.\n";
return;
}
if ($result->statusDocument->isActive()) {
echo "El CFDI de retenciones {$result->uuid} de {$result->receiverName} se encuentra ACTIVO.\n";
}