PHP code example of phpcfdi / sat-estado-cfdi-soap
1. Go to this page and download the library: Download phpcfdi/sat-estado-cfdi-soap 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-cfdi-soap example snippets
declare(strict_types=1);
use PhpCfdi\SatEstadoCfdi\Consumer;
use PhpCfdi\SatEstadoCfdi\Soap\SoapConsumerClient;
// crear la instancia básica del Cliente Soap para el consumidor
$client = new SoapConsumerClient();
// creamos el consumidor con nuestro cliente
$consumer = new Consumer($client);
// consumimos el webservice!
$response = $consumer->execute('...expression');
// usamos el resultado
if ($response->cancellable()->isNotCancellable()) {
echo 'CFDI no es cancelable';
}
declare(strict_types=1);
use PhpCfdi\SatEstadoCfdi\Soap\SoapConsumerClient;
use PhpCfdi\SatEstadoCfdi\Soap\SoapClientFactory;
use PhpCfdi\SatEstadoCfdi\Consumer;
// creamos la fábrica dándole los parámetros de los objetos \SoapClient que fabricará
$factory = new SoapClientFactory([
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0'
]);
// le pasamos la fábrical al cliente
$client = new SoapConsumerClient($factory);
// creamos el consumidor del servicio para poder hacer las consultas
$consumer = new Consumer($client);