PHP code example of davichano / peru-ruc-dni-php
1. Go to this page and download the library: Download davichano/peru-ruc-dni-php 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/ */
davichano / peru-ruc-dni-php example snippets
use Davichano\DNI\Person;
yOCR="xxxxxxxxxxxxxxxxx";
$person = new Person($dni);
$data = $person->get_data($apiKeyOCR);
if ($data) {
echo json_encode($data);
} else {
echo json_encode(['error' => 'Persona no encontrada']);
}