1. Go to this page and download the library: Download phpcfdi/csf-scraper 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 / csf-scraper example snippets
composer
declare(strict_types=1);
use GuzzleHttp\Client;
use PhpCfdi\CsfScraper\Scraper;
use PhpCfdi\Rfc\Rfc;
$rfc, idCIF: 'ID_CIF');
// También puedes obtener los datos de la persona directamente del archivo local PDF
// (Ten en cuenta que esta funcionalidad requiere de tener instalado poppler-utils en tu servidor).
$person = $scraper->obtainFromPdfPath('LOCAl_PDF_FILE_PATH');
// puedes acceder a los datos de la persona (moral o física) usando los métodos incluidos:
if($rfc->isFisica()) {
echo $person->getNombre();
}
if($rfc->isMoral()) {
echo $person->getRazonSocial();
}
// o puedes obtener el array de datos usando
echo print_r($person->toArray(), true);